mirror of
https://github.com/certd/certd.git
synced 2026-06-27 05:47:34 +08:00
6 lines
96 B
Docker
6 lines
96 B
Docker
|
|
FROM node:15.8.0
|
||
|
|
ENV TZ=Asia/Shanghai
|
||
|
|
EXPOSE 3000
|
||
|
|
ADD ./* /app/
|
||
|
|
ENTRYPOINT node /app/bin/www.js
|