diff --git a/.gitignore b/.gitignore index eddfc89..48870fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ secrets.py +pyenv.cfg lib/ bin/ __pycache__/ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9d5f507 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3 + +WORKDIR /usr/src/app + +COPY requirements.txt ./ +COPY modules/ ./modules +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +CMD [ "python", "./main.py"] diff --git a/pyvenv.cfg b/pyvenv.cfg deleted file mode 100644 index 3e18ed6..0000000 --- a/pyvenv.cfg +++ /dev/null @@ -1,5 +0,0 @@ -home = /usr/bin -include-system-site-packages = false -version = 3.12.6 -executable = /usr/bin/python3.12 -command = /usr/bin/python -m venv /home/leonie/Documents/projects/meta-kitties