mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
Add sccache for better Rust caching
This commit is contained in:
parent
f615e9b2ec
commit
fc7e67d7d5
2 changed files with 27 additions and 2 deletions
20
Dockerfile
20
Dockerfile
|
@ -5,6 +5,22 @@ WORKDIR /iceshrimp
|
|||
# Install compilation dependencies
|
||||
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm rust cargo vips
|
||||
|
||||
# Collect sccache args
|
||||
ARG SCCACHE_VERSION
|
||||
ARG SCCACHE_ARCHITECTURE
|
||||
ARG SCCACHE_MEMORY_LIMIT
|
||||
|
||||
# Download and initialize sccache
|
||||
RUN wget https://github.com/mozilla/sccache/releases/download/${SCCACHE_VERSION}/sccache-${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz && \
|
||||
tar xzf sccache-${SCCACHE_VERSION}-${SCCACHE_ARCHITECTURE}-unknown-linux-musl.tar.gz && \
|
||||
mv sccache-${SCCACHE_VERSION}-${SCCACHE_ARCHITECTURE}-unknown-linux-musl/sccache /usr/local/bin && \
|
||||
rm -rf sccache-${SCCACHE_VERSION}-${SCCACHE_ARCHITECTURE}-unknown-linux-musl*
|
||||
|
||||
# Set sccache as the Rust compiler, set default dir, and set cache memory limit
|
||||
ENV RUSTC_WRAPPER=sccache
|
||||
ENV SCCACHE_DIR=/tmp/sccache
|
||||
ENV SCCACHE_CACHE_SIZE=${SCCACHE_MEMORY_LIMIT}
|
||||
|
||||
# Copy only the cargo dependency-related files first, to cache efficiently
|
||||
COPY packages/backend/native-utils/Cargo.toml packages/backend/native-utils/Cargo.toml
|
||||
COPY packages/backend/native-utils/Cargo.lock packages/backend/native-utils/Cargo.lock
|
||||
|
@ -35,8 +51,8 @@ RUN corepack enable && corepack prepare yarn@stable --activate && yarn
|
|||
# Copy in the rest of the native-utils rust files
|
||||
COPY packages/backend/native-utils packages/backend/native-utils/
|
||||
|
||||
# Compile native-utils
|
||||
RUN yarn workspace native-utils build
|
||||
# Compile native-utils utilising sccache
|
||||
RUN --mount=type=cache,target=/tmp/sccache yarn workspace native-utils build
|
||||
|
||||
# Copy in the rest of the files to compile
|
||||
COPY . ./
|
||||
|
|
|
@ -3,6 +3,15 @@ version: "3"
|
|||
services:
|
||||
web:
|
||||
image: iceshrimp.dev/iceshrimp/iceshrimp
|
||||
### If you want to build the image locally
|
||||
# build:
|
||||
# context: .
|
||||
# args:
|
||||
# - SCCACHE_VERSION=v0.5.4
|
||||
# - SCCACHE_ARCHITECTURE=x86_64
|
||||
### If you are using ARM64
|
||||
# - SCCACHE_ARCHITECTURE=aarch64
|
||||
# - SCCACHE_MEMORY_LIMIT=10G #You may want to lower or increase this value as you see fit. 10G is 10GB.
|
||||
container_name: iceshrimp_web
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
|
|
Loading…
Reference in a new issue