Files
post_bot/Dockerfile
Choi A.K. d17f0f5507
Some checks failed
continuous-integration/drone/push Build is failing
async refactor & docker deploy environment
2025-09-05 12:04:58 +09:00

7 lines
187 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN apt update && apt install -y gcc && apt install -y sqlite3
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]