Adjust file handling in Docker build process

This commit is contained in:
Kovah 2022-04-30 11:55:28 +02:00 committed by James Long
parent 2bb3e3ea48
commit 3fb71b74cd

View file

@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y openssl
RUN mkdir /app
WORKDIR /app
ENV NODE_ENV=production
ADD . .
ADD yarn.lock package.json ./
RUN yarn install --production
FROM node:16-bullseye-slim as prod
@ -12,4 +12,5 @@ FROM node:16-bullseye-slim as prod
RUN apt-get update && apt-get install openssl && apt-get clean -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=base /app /app
ADD . .
CMD ["yarn", "start"]