Merge pull request #46 from LucidKobold/embeds

Embeds
This commit is contained in:
Lucid Kobold
2025-06-20 20:37:30 +00:00
committed by GitHub

View File

@@ -1,5 +1,11 @@
FROM node:lts-slim AS base FROM node:lts-slim AS base
# Enable Corepack
RUN corepack enable
# Set Yarn to the latest stable version
RUN yarn set version stable
# Create app directory # Create app directory
WORKDIR /usr/src WORKDIR /usr/src
@@ -23,7 +29,7 @@ FROM base AS runner
COPY package*.json ./ COPY package*.json ./
# Install only production app dependencies # Install only production app dependencies
RUN yarn install --production #RUN yarn install
# Bundle app source # Bundle app source
COPY . . COPY . .