diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9e90735 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +FROM python:3.12 + +# Create app directory +WORKDIR /app + +# Install app dependencies +COPY requirements.txt ./ + +RUN pip install -r requirements.txt + + +COPY ezgg_website ./ezgg_website +COPY rio.toml ./ +COPY .project-root ./ + +EXPOSE 8000 +CMD [ "rio", "run", "--release", "--public" ] diff --git a/requirements.txt b/requirements.txt index 8519a75..38591f4 100644 Binary files a/requirements.txt and b/requirements.txt differ