File tree 3 files changed +3
-20
lines changed
3 files changed +3
-20
lines changed Original file line number Diff line number Diff line change 1
1
Dockerfile *
2
2
target
3
- integration_tests /blockstack-consensus-data /
4
- integration_tests /test-out /
5
- api /data
6
- .git
7
- .venv
8
3
.dockerignore
9
- testnet /index.html
10
- testnet.log
11
- testnet-logs *
12
- legacy
13
- build-scripts
14
- dist
Original file line number Diff line number Diff line change 25
25
# # Setup Docker for the builds
26
26
- name : Docker setup
27
27
id : docker_setup
28
- uses : stacks-network /actions/docker@main
28
+ uses : wileyj /actions/docker@main
29
29
with :
30
30
username : ${{ secrets.DOCKERHUB_USERNAME }}
31
31
password : ${{ secrets.DOCKERHUB_PASSWORD }}
Original file line number Diff line number Diff line change @@ -5,18 +5,12 @@ ARG GIT_BRANCH='No Branch Info'
5
5
ARG GIT_COMMIT='No Commit Info'
6
6
7
7
WORKDIR /src
8
-
9
8
COPY . .
10
-
11
9
RUN mkdir /out
12
-
13
10
RUN rustup toolchain install stable
14
11
RUN cargo build --features monitoring_prom,slog_json --release
15
-
16
- RUN cp target/release/stacks-node /out
12
+ RUN cp -R target/release/. /out
17
13
18
14
FROM debian:bookworm-slim
19
-
20
- COPY --from=build /out/ /bin/
21
-
15
+ COPY --from=build /out/stacks-node /out/stacks-signer /out/stacks-inspect /bin/
22
16
CMD ["stacks-node" , "mainnet" ]
You can’t perform that action at this time.
0 commit comments