First full version

This commit is contained in:
2024-04-24 17:59:20 +02:00
commit b4b931633b
33 changed files with 2039 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
RUN pip install -e .
EXPOSE 8080
CMD ["gunicorn", "--bind", "0.0.0.0:8080", "hxbooks:create_app()"]