Implementierung eines anonymen Counters - Nicht persistent
All checks were successful
release-tag / release-image (push) Successful in 2m9s

This commit is contained in:
2025-05-11 10:57:36 +02:00
parent 847d860144
commit 08ef9c7132
5 changed files with 50 additions and 24 deletions

View File

@@ -48,7 +48,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
COPY --from=build /blog /usr/local/bin/blog
# ─── Content + Assets ───
RUN mkdir -p /content /static /pages /app
RUN mkdir -p /content /static /pages /app /templates /ticks
COPY . /app
COPY --from=content /out/content /content
COPY --from=content /out/static /static
@@ -59,6 +59,7 @@ ENV BLOG_CONTENT_DIR=/content
ENV BLOG_STATIC_DIR=/static
ENV BLOG_PAGES_DIR=/pages
ENV BLOG_TEMPLATES_DIR=/templates
ENV BLOG_TICKS_DIR=/ticks
EXPOSE 8080
CMD ["blog"]