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(gateway): install curl for health checks #1291

Merged
merged 4 commits into from Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -757,9 +757,9 @@ workflows:
jobs:
- approve-push-unstable:
type: approval
filters:
branches:
only: main
# filters:
# branches:
# only: main
- build-and-push:
name: build-and-push-unstable
aws-access-key-id: DEV_AWS_ACCESS_KEY_ID
Expand Down
2 changes: 2 additions & 0 deletions Containerfile
Expand Up @@ -118,6 +118,8 @@ ARG TARGETPLATFORM
RUN for target_platform in "linux/arm64" "linux/arm64/v8"; do \
if [ "$TARGETPLATFORM" = "$target_platform" ]; then \
mv /usr/lib/ulid0_aarch64.so /usr/lib/ulid0.so; fi; done
# curl is needed for health checks
RUN apt update && apt install -y curl
COPY --from=chef-builder /build/target/${CARGO_PROFILE}/shuttle-gateway /usr/local/bin
ENTRYPOINT ["/usr/local/bin/shuttle-gateway"]
FROM shuttle-gateway AS shuttle-gateway-dev
Expand Down