Skip to content

Commit

Permalink
fix: Type bind
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan committed Dec 10, 2024
1 parent ed83abb commit e65bae6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions containers/runner.Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ RUN pacman -Syu --noconfirm meson pkgconf cmake git gcc make rustup \
RUN rustup default stable

#Copy the whole repo inside the build container
COPY ./ /builder/nestri/
# COPY ./ /builder/nestri/

RUN mkdir -p /artifacts

RUN --mount=type=cache,target=/builder/nestri/target/ \
RUN --mount=type=bind,target=/builder/nestri/ \
--mount=type=cache,target=/builder/nestri/target/ \
--mount=type=cache,target=/usr/local/cargo/git/db \
--mount=type=cache,target=/usr/local/cargo/registry/ \
cd /builder/nestri/packages/server/ \
Expand Down

0 comments on commit e65bae6

Please sign in to comment.