Files
IIS/assets/service/requests/Dockerfile
2024-11-21 10:04:18 +03:00

11 строки
169 B
Docker

FROM python:3.11-slim
COPY . /app
WORKDIR /app
RUN pip install requests
CMD ["python3", "req.py"]
# docker build . --tag test_requests:0
# docker run test_requests:0