did stuff

This commit is contained in:
2025-01-09 09:00:08 +01:00
parent 086bd8bff6
commit b04ffdc2d4
3 changed files with 25 additions and 3 deletions

View File

@ -11,8 +11,10 @@ COPY --from=0 /web /code/web
ENV FLASK_APP=app.py
WORKDIR /code
ENV FLASK_RUN_HOST=0.0.0.0
RUN apk add --no-cache gcc musl-dev linux-headers
RUN apk add --no-cache gcc musl-dev linux-headers libpq-dev
EXPOSE 5000
# COPY . .
RUN pip install --upgrade pip
RUN pip install -r /code/requirements.txt
CMD ["flask", "run", "--debug"]