diff options
| author | 2026-05-17 17:59:45 +0700 | |
|---|---|---|
| committer | 2026-05-17 17:59:45 +0700 | |
| commit | 0825abc878ab02ab21bd3cee3265d86576492d20 (patch) | |
| tree | 522de2f627a5a944ba49ec515f802c40c5dfaa7f | |
| parent | d705d3f75ea6fd3ff97c5c7cbbbd4b57a73d3e9d (diff) | |
| download | web-0825abc878ab02ab21bd3cee3265d86576492d20.tar.gz web-0825abc878ab02ab21bd3cee3265d86576492d20.zip | |
fix: only include necessary environment config in docker
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ COPY --from=build-stage /builddir/migrations /app/migrations COPY --from=build-stage /builddir/static /app/static COPY --from=build-stage /builddir/views /app/views COPY --from=build-stage /builddir/l10n/*.yaml /app/l10n/ -COPY --from=build-stage /builddir/config/config*.yaml /app/config/ +COPY --from=build-stage /builddir/config/config.${ENVIRONMENT}.yaml /app/config/config.${ENVIRONMENT}.yaml RUN apk add --no-cache tzdata sqlite |