This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gractwo-pl/Dockerfile
2022-06-20 23:10:02 +02:00

7 lines
96 B
Docker

FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN npm install
RUN npx next build
CMD npx next start