Added self signed certs

This commit is contained in:
Fasterino (Server)
2025-02-27 23:29:25 +03:00
parent 972b671b92
commit cd2db5b04f
7 changed files with 119 additions and 24 deletions

View File

@@ -1,10 +1,16 @@
FROM node:21-alpine
RUN mkdir /app
RUN apk add --no-cache openssl
WORKDIR /app
COPY . .
RUN mkdir dist
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
VOLUME /app/vol
CMD npm run start
CMD npm start