fix dockerfile
This commit is contained in:
parent
abb539edcb
commit
c612badd68
|
|
@ -3,6 +3,7 @@ WORKDIR /app
|
|||
RUN apk add --no-cache libc6-compat
|
||||
|
||||
COPY package-lock.json ./
|
||||
COPY package.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
|
|
@ -16,7 +17,8 @@ ENV NODE_ENV=production
|
|||
COPY --from=builder /app/.next ./.next
|
||||
COPY --from=builder /app/public ./public
|
||||
COPY --from=builder /app/node_modules ./node_modules
|
||||
COPY --from=builder /app/package*.json ./
|
||||
COPY --from=builder /app/package-lock.json ./
|
||||
COPY --from=builder /app/package.json ./
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["npm", "run", "start"]
|
||||
Loading…
Reference in New Issue