Skip to content

Commit

Permalink
fix: Pass appropriate args to rundler process.
Browse files Browse the repository at this point in the history
 Changes to be committed:
	modified:   Dockerfile
	modified:   hybrid-compute/docker-compose.yml
  • Loading branch information
mmontour1306 committed Nov 18, 2024
1 parent abb2728 commit f008e90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ COPY --from=planner /app/recipe.json recipe.json

# Set the build profile to be release
ARG BUILD_PROFILE=release
ENV BUILD_PROFILE $BUILD_PROFILE
ENV BUILD_PROFILE=$BUILD_PROFILE

# Builds dependencies
RUN cargo chef cook --profile $BUILD_PROFILE --recipe-path recipe.json
Expand All @@ -55,3 +55,4 @@ COPY --from=builder /app/target/release/rundler /usr/local/bin

EXPOSE 3000 8080
ENTRYPOINT ["/usr/local/bin/rundler"]
CMD ["node", "--disable_entry_point_v0_6"]
2 changes: 1 addition & 1 deletion hybrid-compute/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
- 3300:3300
command: >
node
--disable_entry_point_v0_7
--disable_entry_point_v0_6
--builder.dropped_status_unsupported
offchain-rpc:
Expand Down

0 comments on commit f008e90

Please sign in to comment.