Files
mol-robot/Dockerfile
mol 3e8502fb94
Some checks reported errors
continuous-integration/drone/push Build encountered an error
test: auto
2023-08-09 10:29:00 +08:00

14 lines
140 B
Docker

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