fix: Add ascii_art to Dockerfile
All checks were successful
Build Docker / BuildImage (push) Successful in 1m7s
Check Code Quality / RuffCheck (push) Successful in 1m23s

This commit is contained in:
2026-03-18 22:45:14 +11:00
parent df4a8da5df
commit 1bc3d3e15d

View File

@@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
# Copy only app source files # Copy only app source files
COPY blueprints blueprints COPY blueprints blueprints
COPY main.py server.py curl.py tools.py mail.py cache_helper.py ./ COPY main.py server.py curl.py tools.py mail.py cache_helper.py ascii_art.py ./
COPY templates templates COPY templates templates
COPY data data COPY data data
COPY pwa pwa COPY pwa pwa
@@ -56,7 +56,7 @@ COPY --from=build --chown=appuser:appgroup /app/curl.py /app/
COPY --from=build --chown=appuser:appgroup /app/tools.py /app/ COPY --from=build --chown=appuser:appgroup /app/tools.py /app/
COPY --from=build --chown=appuser:appgroup /app/mail.py /app/ COPY --from=build --chown=appuser:appgroup /app/mail.py /app/
COPY --from=build --chown=appuser:appgroup /app/cache_helper.py /app/ COPY --from=build --chown=appuser:appgroup /app/cache_helper.py /app/
COPY --from=build --chown=appuser:appgroup /app/ascii_art.py /app/
USER appuser USER appuser
EXPOSE 5000 EXPOSE 5000