diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..ea2e09c --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +src/db.sqlite3 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ffe54a6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.13-slim + +RUN python -m venv /.venv +ENV PATH="/.venv/bin:$PATH" + +RUN pip install "django" + +COPY src /src + +WORKDIR /src + +CMD ["python", "manage.py", "runserver", "0.0.0.0:8888"] \ No newline at end of file