1
0
telegram-action/Dockerfile

6 lines
116 B
Docker
Raw Normal View History

2022-04-22 16:28:20 +02:00
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN python -m pip install requests
2022-04-22 17:18:11 +02:00
ENTRYPOINT ["/app/entrypoint.sh"]