Files
membank/user-guide/Dockerfile
12600k-rog-d4 1e15827707 0401
2026-04-01 02:21:55 +08:00

14 lines
173 B
Docker

FROM node:18-alpine
RUN apk add --no-cache nginx
WORKDIR /app
COPY . /app/
COPY nginx.conf /etc/nginx/http.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]