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-16 21:15:43 +02:00

7 lines
130 B
Docker

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