matrix-bot-praying-times/Dockerfile
Finn Christiansen fc0728c756
Some checks failed
ci / docker (push) Failing after 2m26s
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s
💚 Fix ARM build
2024-06-12 22:52:52 +02:00

13 lines
232 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.12-alpine
WORKDIR /bot
RUN apk update && apk add python3-dev gcc libc-dev
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python", "bot.py"]