Skip to content

Commit

Permalink
🔧 Missed 2 crates.
Browse files Browse the repository at this point in the history
  • Loading branch information
langyo committed Oct 11, 2024
1 parent 9092f9c commit d6aa4a1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ RUN cargo install [email protected]
COPY ./Cargo.toml /home/Cargo.toml
RUN cargo new --name server /home/packages/server
COPY ./packages/server/Cargo.toml /home/packages/server/Cargo.toml
RUN cargo new --lib --name client /home/packages/client
RUN cargo new --lib --name _client /home/packages/client
COPY ./packages/client/Cargo.toml /home/packages/client/Cargo.toml
RUN cargo new --lib --name database /home/packages/database
RUN cargo new --lib --name _database /home/packages/database
COPY ./packages/database/Cargo.toml /home/packages/database/Cargo.toml
RUN cargo new --lib --name _functions /home/packages/functions
COPY ./packages/functions/Cargo.toml /home/packages/functions/Cargo.toml
RUN cargo new --lib --name _types /home/packages/types
COPY ./packages/types/Cargo.toml /home/packages/types/Cargo.toml

ENV ROOT_DIR=/home/res
WORKDIR /home
Expand All @@ -23,6 +27,8 @@ RUN cargo fetch
COPY ./packages/server /home/packages/server
COPY ./packages/client /home/packages/client
COPY ./packages/database /home/packages/database
COPY ./packages/functions /home/packages/functions
COPY ./packages/types /home/packages/types

COPY ./res/languages /home/res/languages
COPY ./res/website /home/res/website
Expand Down

0 comments on commit d6aa4a1

Please sign in to comment.