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