mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Fixing docker file.
This commit is contained in:
parent
f8615b6178
commit
f2bdc78d2a
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ COPY server/Cargo.toml server/Cargo.lock ./
|
|||
# this build step will cache your dependencies
|
||||
RUN mkdir -p ./src/bin \
|
||||
&& echo 'fn main() { println!("Dummy") }' > ./src/bin/main.rs
|
||||
RUN cargo build --release --bin lemmy
|
||||
RUN cargo build --release
|
||||
RUN rm -r ./target/release/.fingerprint/lemmy_server-*
|
||||
|
||||
# copy your source tree
|
||||
|
@ -29,8 +29,8 @@ COPY server/src ./src/
|
|||
COPY server/migrations ./migrations/
|
||||
|
||||
# build for release
|
||||
RUN cargo build --frozen --release --bin lemmy
|
||||
RUN mv /app/server/target/release/lemmy /app/lemmy
|
||||
RUN cargo build --frozen --release
|
||||
RUN mv /app/server/target/release/lemmy_server /app/lemmy
|
||||
|
||||
# Get diesel-cli on there just in case
|
||||
# RUN cargo install diesel_cli --no-default-features --features postgres
|
||||
|
|
Loading…
Reference in a new issue