Files
hse-2026/homework/03-http-server/solution/Dockerfile
T
2026-09-24 21:30:37 +03:00

11 lines
168 B
Docker

FROM python:3.12-slim
WORKDIR /http/server
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
ENTRYPOINT ["python3", "server.py"]