init: Initial Commit

This commit is contained in:
2024-01-15 20:47:37 -05:00
commit 5a2fd27aa3
28 changed files with 3416 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Use an official Python runtime as a parent image
FROM python:3.10-slim
ENV PYTHONUNBUFFERED 1
RUN pip install poetry
WORKDIR /app
COPY pyproject.toml pyproject.toml
COPY poetry.lock poetry.lock
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN poetry install --no-dev
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]