10 lines
206 B
Docker
10 lines
206 B
Docker
FROM python:3.12-slim-bookworm
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY app.py /app/app.py
|
|
|
|
EXPOSE 80
|
|
CMD ["python", "-u", "app.py"]
|