Files
SafeLine/website/Dockerfile
2023-09-07 17:54:04 +08:00

8 lines
123 B
Docker

FROM node:20.5-alpine
COPY . /app
WORKDIR /app
RUN npm ci
RUN npm run build
CMD npm run serve -- --port 80 --host 0.0.0.0