Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter committed Aug 10, 2022
2 parents 07fec5e + ad33b1a commit 5df3252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM node:16-alpine AS deps

RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY package*.json ./
RUN npm i

# Rebuild source code only when needed
FROM node:16 AS builder
Expand Down Expand Up @@ -35,4 +35,4 @@ EXPOSE 3000
ENV PORT 3000


CMD [ "node", "server.js" ]
CMD [ "node", "server.js" ]

0 comments on commit 5df3252

Please sign in to comment.