Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: curio docker build/publish #4922

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions .github/workflows/curio-devnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:
- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v6
with:
build-args: |
LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-10-10-600728e
GOFLAGS="-tags=debug"
file: ./scripts/devnet-curio/curio.dockerfile
context: ./scripts/devnet-curio
tags: ${{ steps.meta.outputs.tags }}
Expand Down
1 change: 1 addition & 0 deletions scripts/devnet-curio/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
LOTUS_IMAGE=ghcr.io/chainsafe/lotus-devnet:2024-10-10-600728e
CURIO_IMAGE=ghcr.io/chainsafe/curio-devnet:2024-10-22-d0b5671
FOREST_DATA_DIR=/forest_data
LOTUS_DATA_DIR=/lotus_data
CURIO_REPO_PATH=/var/lib/curio
Expand Down
7 changes: 1 addition & 6 deletions scripts/devnet-curio/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,7 @@ services:
lotus_node:
condition: service_healthy
container_name: curio
build:
context: .
dockerfile: curio.dockerfile
args:
GOFLAGS: "-tags=debug"
LOTUS_IMAGE: ${LOTUS_IMAGE}
image: ${CURIO_IMAGE}
init: true
ports:
- "12300:12300" # API
Expand Down
Loading