This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
bot/Dockerfile
2022-06-15 22:33:33 +02:00

6 lines
118 B
Docker

# syntax=docker/dockerfile:1
FROM node:16.15.1-alpine
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["node", "index.js"]