0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 04:30:44 -05:00
server/project/docs.Dockerfile
2023-03-03 15:23:46 +00:00

13 lines
171 B
Docker

FROM node:14 as builder
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
RUN npm run gen:docs
FROM nginx:latest
COPY --from=builder /app/docs /usr/share/nginx/html