Skip to content

Commit ee05841

Browse files
committed
Updating Dockerfile to report version data
1 parent acd148a commit ee05841

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

.dockerignore

-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
11
Dockerfile*
22
target
3-
integration_tests/blockstack-consensus-data/
4-
integration_tests/test-out/
5-
api/data
6-
.git
7-
.venv
83
.dockerignore
9-
testnet/index.html
10-
testnet.log
11-
testnet-logs*
12-
legacy
13-
build-scripts
14-
dist

.github/workflows/image-build-source.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
## Setup Docker for the builds
2626
- name: Docker setup
2727
id: docker_setup
28-
uses: stacks-network/actions/docker@main
28+
uses: wileyj/actions/docker@main
2929
with:
3030
username: ${{ secrets.DOCKERHUB_USERNAME }}
3131
password: ${{ secrets.DOCKERHUB_PASSWORD }}

Dockerfile

+2-8
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,12 @@ ARG GIT_BRANCH='No Branch Info'
55
ARG GIT_COMMIT='No Commit Info'
66

77
WORKDIR /src
8-
98
COPY . .
10-
119
RUN mkdir /out
12-
1310
RUN rustup toolchain install stable
1411
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
1713

1814
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/
2216
CMD ["stacks-node", "mainnet"]

0 commit comments

Comments
 (0)