added copying of static assets
All checks were successful
Cargo Build & Test / Push to container registry (push) Successful in 2m26s

This commit is contained in:
2025-07-18 12:20:56 +02:00
parent 6c04f21a20
commit 8cdb335fa1

View File

@@ -6,5 +6,9 @@ RUN cargo install --path .
FROM debian:bullseye-slim
# RUN apt-get update && apt-get install -y extra-runtime-dependencies && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/workout /usr/local/bin/workout
COPY assets /app/assets
WORKDIR /app
CMD ["workout"]