silent bugs

This commit is contained in:
2026-02-12 00:01:40 -06:00
parent b55a96c51c
commit 9b6e29a15c
9 changed files with 80 additions and 44 deletions

View File

@@ -2,13 +2,9 @@ FROM python:3.10-bullseye
LABEL maintainer="Andrew Simonson <asimonson1125@gmail.com>"
WORKDIR /app
ADD ./src /app
COPY . .
COPY src/ .
WORKDIR /app/src
RUN apt-get -yq update && \
pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "gunicorn", "--bind", "0.0.0.0:8080", "app:app"]