15 lines
224 B
Docker
15 lines
224 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt update
|
|
RUN apt install -y
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt ./
|
|
COPY main.py ./
|
|
COPY .env ./
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ] |