File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 65
65
- name : Checkout project
66
66
uses : actions/checkout@v3
67
67
68
- # - name: Set up QEMU
69
- # uses: docker/setup-qemu-action@v3
70
- # id: qemu
68
+ - name : Set up QEMU
69
+ uses : docker/setup-qemu-action@v3
70
+ id : qemu
71
71
72
72
- name : Setup Docker buildx action
73
73
uses : docker/setup-buildx-action@v3
90
90
docker buildx build \
91
91
--cache-from "type=local,src=/tmp/.buildx-cache" \
92
92
--cache-to "type=local,dest=/tmp/.buildx-cache" \
93
- --platform linux/amd64 \
93
+ --platform linux/amd64,linux/arm64 \
94
94
--tag ${{ secrets.DOCKER_HUB_USER }}/electrs:$TAG \
95
95
--tag ${{ secrets.DOCKER_HUB_USER }}/electrs:latest \
96
96
--output "type=registry" . \
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm-slim AS base
2
2
3
- RUN apt update -qy
4
- RUN apt install -qy librocksdb-dev
3
+ ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
4
+
5
+ RUN apt update -qy && \
6
+ apt install -qy librocksdb-dev curl
5
7
6
8
FROM base as build
7
9
8
- RUN apt install -qy git cargo clang cmake
10
+ RUN apt install -qy git clang cmake
11
+
12
+ ENV RUSTUP_HOME=/rust
13
+ ENV CARGO_HOME=/cargo
14
+ ENV PATH=/cargo/bin:/rust/bin:$PATH
15
+
16
+ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
9
17
10
18
WORKDIR /build
11
19
COPY . .
You can’t perform that action at this time.
0 commit comments