affection-x-bot/app/Dockerfile
2024-08-21 22:24:20 -04:00

8 lines
179 B
Docker

FROM python:3.12
RUN apt update
RUN apt upgrade -y
RUN apt install -y build-essential
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["sh", "-c", "python main.py"]