-
-
Notifications
You must be signed in to change notification settings - Fork 630
/
Dockerfile
39 lines (28 loc) · 975 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# On macOS, docker does not support IPv6.
FROM alpine
RUN apk add go fuse bash rustup git gcc musl-dev g++
RUN rustup-init -y --profile minimal
ENV PATH="/root/.cargo/bin:$PATH"
WORKDIR /src
COPY . .
RUN git clone https://github.com/anacrolix/possum
WORKDIR possum
RUN git submodule update --init --recursive
RUN --mount=type=cache,target=/root/.cargo/registry \
--mount=type=cache,target=/root/.cargo/git \
--mount=type=cache,target=/src/possum/target \
cargo build
WORKDIR ..
ARG GOCACHE=/root/.cache/go-build
ARG GOMODCACHE=/root/go/pkg/mod
RUN --mount=type=cache,target=$GOCACHE \
--mount=type=cache,target=$GOMODCACHE \
CGO_LDFLAGS=possum/target/debug/libpossum.a \
go test -failfast ./...
# # Can't use fuse inside Docker? Asks for modprobe fuse.
# RUN go install github.com/anacrolix/godo@v1
# RUN echo "$HOME"
# ENV PATH="/root/go/bin:$PATH"
# # RUN --mount=type=cache,target=$GOCACHE \
# # --mount=type=cache,target=$GOMODCACHE \
# # ./fs/test.sh