7 lines
187 B
Docker
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"]
|