Files
mol-robot/Dockerfile
mol 493e0361d5
All checks were successful
continuous-integration/drone/push Build is passing
test: auto
2023-08-09 09:51:34 +08:00

14 lines
142 B
Docker

FROM node:18-bullseye as dep-builder
WORKDIR /app
COPY package*.json ./
# RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "app.js" ]