Files
mol-robot/Dockerfile
mol 65a3a4ac99
Some checks are pending
continuous-integration/drone/push Build is running
test
2023-12-13 23:21:05 +08:00

15 lines
270 B
Docker

FROM node:18-bullseye as dep-builder
WORKDIR /app
# COPY package*.json ./
COPY . .
ENV https_proxy=http://192.168.124.12:7890
ENV https_proxy=http://192.168.124.12:7890
RUN npm --registry https://registry.npm.taobao.org install
EXPOSE 8080
CMD [ "node", "app.js" ]