We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27a8e05 commit a447825Copy full SHA for a447825
Dockerfile
@@ -4,7 +4,7 @@ FROM node:14-alpine AS deps
4
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
5
RUN apk add --no-cache libc6-compat
6
WORKDIR /app
7
-COPY package.json yarn.lock ./
+COPY package.json ./
8
RUN yarn install --frozen-lockfile
9
10
# Rebuild the source code only when needed
@@ -24,4 +24,4 @@ EXPOSE 3000
24
# Uncomment the following line in case you want to disable telemetry.
25
# ENV NEXT_TELEMETRY_DISABLED 1
26
27
-CMD ["yarn", "start"]
+CMD ["yarn", "start"]
0 commit comments