Files
hse-2026/materials/03-http/seminar/website/kittens/Dockerfile
T
2026-09-24 21:25:39 +03:00

12 lines
248 B
Docker

FROM python:3.11.5-slim-bullseye
WORKDIR /application
# Copy the requirements file and download the dependencies.
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
# Copy other data.
COPY . .
CMD [ "python3", "app.py"]