1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-22 02:54:21 +00:00

Improve Docker build caching

This commit is contained in:
Steffo 2024-07-11 12:05:07 +02:00
parent adca9ba0ee
commit d2a7831d4c
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -60,6 +60,18 @@ RUN \
apt-get install --assume-yes libpq-dev:armhf; \
fi
COPY ./Cargo.toml ./Cargo.toml
COPY ./Cargo.lock ./Cargo.lock
RUN \
if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
RUSTTARGET=x86_64-unknown-linux-gnu; \
elif [ "${TARGETPLATFORM}" = "linux/arm64" ]; then \
RUSTTARGET=aarch64-unknown-linux-gnu; \
elif [ "${TARGETPLATFORM}" = "linux/arm/v7" ]; then \
RUSTTARGET=armv7-unknown-linux-gnueabihf; \
fi && \
cargo fetch --locked --target=${RUSTTARGET}
COPY ./ ./
# This has reached a new level of hack