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:02:48 +02:00

7 lines
112 B
Docker

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