Skip to content

Commit

Permalink
github: fix dockerfile (#2486)
Browse files Browse the repository at this point in the history
Fix `Dockerfile` by removing `\` symbols.

This fixes the `build-push-deploy` github workflow which is failing: https://github.com/ObolNetwork/charon/actions/runs/5689854878/job/15422120453

category: fixbuild 
ticket: none
  • Loading branch information
xenowits authored Jul 28, 2023
1 parent 737da22 commit 8320981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN echo "Building with GO_BUILD_FLAG='${GO_BUILD_FLAG}'"
RUN \
--mount=type=cache,target=/go/pkg \
--mount=type=cache,target=/root/.cache/go-build \
go build -o charon "${GO_BUILD_FLAG}" . \
RUN echo "Built charon version=$(./charon version)" \
go build -o charon "${GO_BUILD_FLAG}" .
RUN echo "Built charon version=$(./charon version)"

# Copy final binary into light stage.
FROM debian:bullseye-slim
Expand Down

0 comments on commit 8320981

Please sign in to comment.