dockerfile

This commit is contained in:
lehel 2025-10-07 15:49:56 +02:00
parent c51ff4a88d
commit 9b90cb7590
No known key found for this signature in database
GPG Key ID: 9C4F9D6111EE5CFA
1 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,10 @@ WORKDIR /user
# Copy binary and config files # Copy binary and config files
COPY --from=builder /build/${BINARY_NAME} ./app COPY --from=builder /build/${BINARY_NAME} ./app
# Copy migrations directory
COPY --from=builder /build/migrations ./migrations
COPY config.yaml . COPY config.yaml .
COPY db.yaml . COPY db.yaml .
COPY ui.html . COPY ui.html .