fix: MR fix

This commit is contained in:
Piotr Dec 2025-12-03 22:37:31 +01:00
parent 90120c7f8d
commit dc1ce2ac46
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
25 changed files with 3 additions and 689 deletions

View file

@ -20,7 +20,7 @@ RUN apk update --no-cache \
&& apk add --no-cache git
COPY --from=builder --chown=app:app /app/.venv /app/.venv
COPY --from=builder --chown=app:app /app/app /app/app
COPY --from=builder --chown=app:app /app/src /app/src
ENV PYTHONPATH="/app"
@ -28,6 +28,6 @@ EXPOSE 8081
WORKDIR /app
ENTRYPOINT ["app/.venv/bin/python"]
ENTRYPOINT ["/app/.venv/bin/python"]
CMD ["/app/app/main.py"]
CMD ["/app/src/karl/__init__.py"]