Skip to content

Commit

Permalink
[Node] fix package path (#520)
Browse files Browse the repository at this point in the history
Co-authored-by: Siddharth More <Siddhi More>
  • Loading branch information
siddimore authored Apr 25, 2024
1 parent da48cbe commit 5c3312a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions node/cmd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.21.1-alpine3.18 as builder

ARG SEMVER
ARG GITCOMMIT
ARG GITDATE
ARG SEMVER=""
ARG GITCOMMIT=""
ARG GITDATE=""

RUN apk add --no-cache make musl-dev linux-headers gcc git jq bash

Expand All @@ -20,7 +20,7 @@ COPY go.sum /app

WORKDIR /app/node

RUN go build -ldflags="-X 'node.SemVer=${SEMVER}' -X 'node.GitCommit=${GITCOMMIT}' -X 'node.GitDate=${GITDATE}'" -o ./bin/node ./cmd
RUN go build -ldflags="-X 'github.com/Layr-Labs/eigenda/node.SemVer=${SEMVER}' -X 'github.com/Layr-Labs/eigenda/node.GitCommit=${GITCOMMIT}' -X 'github.com/Layr-Labs/eigenda/node.GitDate=${GITDATE}'" -o ./bin/node ./cmd

FROM alpine:3.18

Expand Down

0 comments on commit 5c3312a

Please sign in to comment.