mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
7 lines
162 B
Docker
7 lines
162 B
Docker
FROM registry.cn-shenzhen.aliyuncs.com/greper/node:15.8.0-alpine
|
|
ENV TZ=Asia/Shanghai
|
|
EXPOSE 3000
|
|
ADD ./ /app/
|
|
RUN cd /app/ && ls
|
|
ENTRYPOINT node /app/bin/www.js
|