Merge branch 'main' of github.com:9IT-Full-Service/quilldrop
R
Rüdiger Küpper
<rpr@9it.de>
committete am 19.02.2026 01:07
4dd20f9f66df76948c6c83714ef0bb8ae3edd1d5
| @@ -1,10 +1,17 @@ | ||
| 1 | +## [1.1.6](https://github.com/9IT-Full-Service/quilldrop/compare/v1.1.5...v1.1.6) (2026-02-19) |
|
| 2 | + | |
| 3 | + | |
| 4 | +### Bug Fixes |
|
| 5 | + | |
| 6 | +* image Dockerfile [skip ci] ([2ae0b76](https://github.com/9IT-Full-Service/quilldrop/commit/2ae0b760626e1b00a88003b1eaa33febb07b76b8)) |
|
| 7 | + | |
| 1 | 8 | ## [1.1.5](https://github.com/9IT-Full-Service/quilldrop/compare/v1.1.4...v1.1.5) (2026-02-18) |
| 2 | 9 | |
| 3 | 10 | |
| 4 | 11 | ### Bug Fixes |
| 5 | 12 | |
| 6 | 13 | * rename workflow [skip ci] ([bc5250a](https://github.com/9IT-Full-Service/quilldrop/commit/bc5250a8532035836e7adda2c694f72860775fee)) |
| 7 | 14 | |
| 8 | 15 | ## [1.1.4](https://github.com/9IT-Full-Service/quilldrop/compare/v1.1.3...v1.1.4) (2026-02-18) |
| 9 | 16 | |
| 10 | 17 |
gelöscht
.dockerignore
+0
−2
| @@ -1,2 +0,0 @@ | ||
| 1 | -static/images |
|
| 2 | -static/images/ |
|
\ No newline at end of file |
| @@ -1,13 +1,13 @@ | ||
| 1 | 1 | FROM --platform=$BUILDPLATFORM nginx AS builder |
| 2 | 2 | |
| 3 | 3 | WORKDIR /app |
| 4 | 4 | |
| 5 | -COPY . . |
|
| 5 | +COPY --exclude=static/images . . |
|
| 6 | 6 | |
| 7 | 7 | RUN ./quilldrop generate |
| 8 | 8 | |
| 9 | 9 | FROM --platform=$BUILDPLATFORM nginx |
| 10 | 10 | |
| 11 | 11 | COPY --from=builder /app/output /usr/share/nginx/html |
| 12 | 12 | |
| 13 | 13 | EXPOSE 80 |