Skip to content
Snippets Groups Projects
Commit 3fb71b74 authored by Kovah's avatar Kovah Committed by James Long
Browse files

Adjust file handling in Docker build process

parent 2bb3e3ea
Branches
Tags v1.0.11
No related merge requests found
......@@ -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"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment