initial commit

This commit is contained in:
tylen
2024-10-29 21:00:35 +00:00
commit 3d8ba6d3be
13 changed files with 479 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM python:3.11-slim-buster
ENV PYTHONPATH=/usr/local/lib
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
CMD ["/bin/sh", "entrypoint.sh"]