fix: containerized senju did not start properly

Refs: OPS-10
This commit is contained in:
Christoph J. Scherr 2025-02-28 16:14:23 +01:00
parent 83add1d0a3
commit 7d41df6976
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB
3 changed files with 11 additions and 10 deletions

View file

@ -1,13 +1,13 @@
FROM python:3.12-alpine AS base
# VENV not needed in docker container
ENV POETRY_VIRTUALENVS_CREATE=false
ENV POETRY_VIRTUALENVS_CREATE=true
ENV FLASK_APP=senju/main.py
COPY ./entrypoint.sh /
WORKDIR /app
COPY . .
COPY . .
# Install dependencies
RUN apk add curl