Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ commands:
- run: git submodule sync
- run: sudo apt-get install gcc libc-dev
- run: git submodule update --init
validate-docker-executeable:
steps:
- run:
name: Run lily within the docker image
command: docker run --rm filecoin/lily:latest --version
publish-docker-from-branch-production:
steps:
- run:
Expand Down Expand Up @@ -251,6 +256,7 @@ jobs:
- run:
name: Build Production Mainnet Docker image
command: make docker-mainnet
- validate-docker-executeable
test-docker-mainnet-dev:
executor: dockerizer
steps:
Expand All @@ -261,6 +267,7 @@ jobs:
- run:
name: Build Dev Mainnet Docker image
command: make docker-mainnet-dev
- validate-docker-executeable
test-docker-calibnet:
executor: dockerizer
steps:
Expand All @@ -271,6 +278,7 @@ jobs:
- run:
name: Build Production Calibnet Docker image
command: make docker-calibnet
- validate-docker-executeable
test-docker-calibnet-dev:
executor: dockerizer
steps:
Expand All @@ -281,6 +289,7 @@ jobs:
- run:
name: Build Dev Calibnet Docker image
command: make docker-calibnet-dev
- validate-docker-executeable

workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion build/docker/prod_entrypoint.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# partial for producing a minimal image by extracting the binary
# from a prior build step (builder.tpl)

FROM buildpack-deps:buster-curl
FROM buildpack-deps:bookworm-curl
COPY --from=builder /go/src/github.com/filecoin-project/lily/lily /usr/bin/
COPY --from=builder /usr/lib/x86_64-linux-gnu/libOpenCL.so* /lib/
COPY --from=builder /usr/lib/x86_64-linux-gnu/libhwloc.so* /lib/
Expand Down