This commit is contained in:
2024-07-31 04:45:12 +03:00
commit 837113ea9c
3 changed files with 114 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.10-alpine
# install requirements
RUN --mount=type=cache,target=/root/.cache/pip \
--mount=type=bind,source=requirements.txt,target=requirements.txt \
pip install -r requirements.txt
COPY tap.py /app/
WORKDIR /app
CMD ["python3", "tap.py"]