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 21:40:20 +02:00

7 lines
118 B
Docker

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