mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 03:49:47 -05:00
chore(docker): enable dependency caching in Dockerfile
This reverts commit 82f1a3207f
.
This commit is contained in:
parent
82f1a3207f
commit
a415ef60a0
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@ FROM rust:1.67.0-alpine3.17 as builder
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN apk update
|
RUN apk update
|
||||||
RUN apk add --no-cache musl-dev
|
RUN apk add --no-cache musl-dev
|
||||||
|
COPY Cargo.toml Cargo.toml
|
||||||
|
RUN mkdir -p src/
|
||||||
|
RUN echo "fn main() {println!(\"failed to build\")}" > src/main.rs
|
||||||
|
RUN cargo build --release
|
||||||
|
RUN rm -f target/release/deps/rustypaste*
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN cargo build --locked --release
|
RUN cargo build --locked --release
|
||||||
RUN mkdir -p build-out/
|
RUN mkdir -p build-out/
|
||||||
|
|
Loading…
Reference in a new issue