Added self signed certs
This commit is contained in:
14
Dockerfile
14
Dockerfile
@@ -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
|
||||
Reference in New Issue
Block a user