From 8cdb335fa156b81cd8b2774481a6b475b7d0a333 Mon Sep 17 00:00:00 2001 From: Timo Boomers Date: Fri, 18 Jul 2025 12:20:56 +0200 Subject: [PATCH] added copying of static assets --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 81a0a00..1e00117 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]