diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..73a0d2c --- /dev/null +++ b/dockerfile @@ -0,0 +1,15 @@ +FROM python:3.12-slim-bookworm + +COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ + +COPY . /app + +#install the app dependencies (??) +WORKDIR /app + + +RUN uv sync --frozen --no-cache + + +# Uruchamiamy aplikacjÄ™ +CMD ["uv", "run", "manage.py", "runserver", "localhost:8000"]