From b2e22d4b6b5dea8216aa2544f23fa5ac42e71f31 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 19 Jul 2025 02:05:57 -0400 Subject: [PATCH] fourth pass at ci --- backend/public/Dockerfile | 4 ++-- backend/task/Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/public/Dockerfile b/backend/public/Dockerfile index 26aa5fb..46cca68 100644 --- a/backend/public/Dockerfile +++ b/backend/public/Dockerfile @@ -2,8 +2,8 @@ FROM rust:1.88.0 WORKDIR /app -COPY ./public ./public -COPY ../cache ./cache +COPY ./public /app/public +COPY ../cache /app/cache RUN cargo build --release --manifest-path ./public/Cargo.toml diff --git a/backend/task/Dockerfile b/backend/task/Dockerfile index fc44846..f1c340b 100644 --- a/backend/task/Dockerfile +++ b/backend/task/Dockerfile @@ -2,9 +2,9 @@ FROM rust:1.88.0 WORKDIR /app -COPY ./task ./task -COPY ../cache ./cache -COPY ../storage ./storage +COPY ./task /app/task +COPY ../cache /app/cache +COPY ../storage /app/storage RUN mkdir /app/posts RUN cargo build --release --manifest-path ./task/Cargo.toml