Fixing build

This commit is contained in:
GunaTrika 2021-12-24 18:58:48 +05:30
parent 9f3ce99b5c
commit 2413b8f021

View File

@ -4,7 +4,7 @@ FROM node:alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
RUN yarn install
# Rebuild the source code only when needed
FROM node:alpine AS builder
@ -42,4 +42,4 @@ EXPOSE 3000
# Uncomment the following line in case you want to disable telemetry.
# ENV NEXT_TELEMETRY_DISABLED 1
CMD ["yarn", "start"]
CMD ["yarn", "start"]