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
web/Dockerfile

6 lines
95 B
Docker

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