1
0
telegram-action/Dockerfile
2022-04-22 18:18:11 +03:00

6 lines
116 B
Docker

FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN python -m pip install requests
ENTRYPOINT ["/app/entrypoint.sh"]