Skip to content

Commit

Permalink
Fix sidecar dockerfile
Browse files Browse the repository at this point in the history
Start build-container earlier
  • Loading branch information
seanmcgary committed Nov 14, 2024
1 parent 056bce6 commit 184c4b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
make lint
build-container:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ RUN make build

FROM debian:testing-slim

COPY --from=builder /build/bin/sidecar /build/bin/sidecar
COPY --from=builder /build/bin/sidecar /usr/local/bin/sidecar

ENTRYPOINT ["/usr/local/bin/sidecar"]
4 changes: 2 additions & 2 deletions charts/sidecar/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description: A Helm chart for the EigenLayer sidecar

type: application

version: 0.1.0-beta.3
version: 0.1.0-beta.4

appVersion: "v1.0.0-beta.3"
appVersion: "v1.0.0-beta.4"
2 changes: 1 addition & 1 deletion charts/sidecar/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
image:
repository: public.ecr.aws/z6g0f8n7/sidecar
pullPolicy: Always
tag: "v1.0.0-beta.1"
tag: "v1.0.0-beta.4"

sidecar:
replicas: 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/installDeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [[ "$OS" == "linux" ]]; then

which go
if [[ $? != 0 ]]; then
echo "Installing Go 1.22"
echo "Installing Go 1.23"
apt-get install -y golang
fi
fi

0 comments on commit 184c4b0

Please sign in to comment.