Fix args in dockerfiles
continuous-integration/drone/push Build is failing Details

This commit is contained in:
IamTheFij 2024-01-04 09:15:20 -08:00
parent c22eea76a1
commit be4e0a179a
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ WORKDIR /app/
RUN addgroup -S nomad-var-dirsync && adduser -S nomad-var-dirsync -G nomad-var-dirsync
# Copy binary in
COPY ./dist/nomad-var-dirsync-TARGETOS-TARGETARCH ./nomad-var-dirsync
COPY ./dist/nomad-var-dirsync-${TARGETOS}-${TARGETARCH} ./nomad-var-dirsync
# Drop to non-root user
USER nomad-var-dirsync

View File

@ -12,7 +12,7 @@ RUN go mod download
COPY ./*.go /app/
ARG VERSION=dev
ENV CGO_ENABLED=0 GOOS=TARGETOS GOARCH=TARGETARCH
ENV CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH}
RUN go build -ldflags "-X main.version=VERSION" -a -installsuffix nocgo -o nomad-var-dirsync .
FROM REPO/alpine:3.19