UNPKG

431 BPlain TextView Raw
1FROM node:lts
2
3# build
4RUN mkdir -p /usr/src/app
5WORKDIR /usr/src/app
6COPY package.json /usr/src/app/
7RUN npm install
8COPY . /usr/src/app
9
10# start
11EXPOSE 8443
12COPY config.json-default config.json
13RUN openssl req \
14 -new \
15 -newkey rsa:4096 \
16 -days 365 \
17 -nodes \
18 -x509 \
19 -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" \
20 -keyout privkey.pem \
21 -out fullchain.pem
22CMD npm run solid start