diff --git a/backend/public/Dockerfile b/backend/public/Dockerfile index 80f23a7..b4f4061 100644 --- a/backend/public/Dockerfile +++ b/backend/public/Dockerfile @@ -2,9 +2,8 @@ FROM rust:1.88.0 WORKDIR /app -COPY ./public ./public -COPY ./cache ./cache -# COPY ./storage ./storage +COPY ./backend/public ./public +COPY ./backend/cache ./cache RUN cargo build --release --manifest-path ./public/Cargo.toml diff --git a/backend/task/Dockerfile b/backend/task/Dockerfile index 9235cf5..8498c70 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 ./backend/task ./task +COPY ./backend/cache ./cache +COPY ./backend/storage ./storage RUN mkdir /app/posts RUN cargo build --release --manifest-path ./task/Cargo.toml