Files
express-reverse-proxy/Dockerfile
Fasterino (Server) cd2db5b04f Added self signed certs
2025-02-27 23:29:25 +03:00

16 lines
165 B
Docker

FROM node:21-alpine
RUN apk add --no-cache openssl
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
VOLUME /app/vol
CMD npm start