9 lines
161 B
Docker
9 lines
161 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt /tmp
|
|
|
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
|
|
CMD [ "python", "-u", "/app/main.py" ]
|
|
|