diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8c37f4d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python:3.10 + +RUN adduser --disabled-password --gecos "" python + +USER python + +COPY *.py requirements.txt / +RUN pip --disable-pip-version-check install -r requirements.txt + +ENTRYPOINT ["python", "run.py"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0895f5e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +toml==0.10.2 +requests~=2.31.0 \ No newline at end of file