1
0
telegram-action/Dockerfile

5 lines
96 B
Docker
Raw Permalink Normal View History

2022-04-22 17:28:20 +03:00
FROM python:3.10-slim
2022-04-22 18:30:14 +03:00
COPY . /
2022-04-22 17:28:20 +03:00
RUN python -m pip install requests
2022-04-22 18:30:14 +03:00
ENTRYPOINT ["/entrypoint.sh"]