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
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y openssl ...@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y openssl
RUN mkdir /app RUN mkdir /app
WORKDIR /app WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
ADD . . ADD yarn.lock package.json ./
RUN yarn install --production RUN yarn install --production
FROM node:16-bullseye-slim as prod FROM node:16-bullseye-slim as prod
...@@ -12,4 +12,5 @@ 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/* RUN apt-get update && apt-get install openssl && apt-get clean -y && rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app
COPY --from=base /app /app COPY --from=base /app /app
ADD . .
CMD ["yarn", "start"] CMD ["yarn", "start"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment