Skip to content

Commit

Permalink
fix(gateway): install curl for health checks (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
oddgrd committed Oct 3, 2023
1 parent 88e7519 commit b623b28
Showing 1 changed file with 2 additions and 0 deletions.
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

0 comments on commit b623b28

Please sign in to comment.