server: add basic sql migration

This commit is contained in:
2023-08-29 10:58:27 +02:00
parent 14fbf97c60
commit cce8a9137a
9 changed files with 352 additions and 2 deletions

View File

@@ -25,5 +25,6 @@ FROM base AS final
COPY --from=builder /venv /venv
RUN mkdir -p /app
COPY reflector /app/reflector
COPY runserver.sh /app/runserver.sh
WORKDIR /app
CMD ["/venv/bin/python", "-m", "reflector.app"]
CMD ["./runserver.sh"]