gitea-bot/Dockerfile

10 lines
129 B
Docker
Raw Permalink Normal View History

2022-07-08 23:05:36 +02:00
FROM node:16.16.0-alpine3.16
2022-07-08 23:16:12 +02:00
COPY src/ ./
2022-07-08 23:05:36 +02:00
COPY package.json package.json
EXPOSE 8080
RUN npm install
2022-11-28 13:40:55 +01:00
CMD ["node", "index.js"]