More modifications to Dockerfile

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-06-18 19:19:38 +01:00
parent 4379c32bc3
commit 2d4504dbe0
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B

View file

@ -2,7 +2,7 @@
FROM node:lts-alpine as build-runner FROM node:lts-alpine as build-runner
# Set temp directory # Set temp directory
WORKDIR /tmp/app WORKDIR /app
# Move package.json # Move package.json
COPY package.json . COPY package.json .
@ -13,29 +13,13 @@ RUN npm install
# Move source files # Move source files
COPY src ./src COPY src ./src
COPY tsconfig.json . COPY tsconfig.json .
COPY prisma ./prisma
# Build project # Build project
RUN npx prisma generate RUN npx prisma generate
RUN npm run build
## production runner
FROM node:lts-alpine as prod-runner
# Set work directory
WORKDIR /app
# Copy package.json from build-runner
COPY --from=build-runner /tmp/app/package.json /app/package.json
# Install dependencies
RUN npm install --omit=dev
RUN npx prisma generate
# Move build files
COPY --from=build-runner /tmp/app/build /app/build
# Start bot # Start bot
CMD [ "npm", "run", "start" ] CMD [ "npm", "run", "dev" ]
LABEL org.opencontainers.image.source=https://git.ludoviko.ch/lucxjo/er LABEL org.opencontainers.image.source=https://git.ludoviko.ch/lucxjo/er
LABEL org.opencontainers.image.description="A Discord bot for the Young Royals guild" LABEL org.opencontainers.image.description="A Discord bot for the Young Royals guild"