5 lines
96 B
Docker
5 lines
96 B
Docker
FROM python:3.10-slim
|
|
COPY . /
|
|
RUN python -m pip install requests
|
|
ENTRYPOINT ["/entrypoint.sh"]
|