6 lines
84 B
Docker
6 lines
84 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
COPY mock_http.py /app/mock_http.py
|
|
EXPOSE 8080
|