Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion authbridge/authproxy/Dockerfile.authbridge
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
COPY cmd/authbridge/go.mod cmd/authbridge/go.sum cmd/authbridge/
COPY authlib/go.mod authlib/go.sum authlib/
ENV GOWORK=off
RUN cd cmd/authbridge && go mod download

Check failure on line 18 in authbridge/authproxy/Dockerfile.authbridge

View workflow job for this annotation

GitHub Actions / Dockerfile Lint (Hadolint)

DL3003 warning: Use WORKDIR to switch to a directory

COPY authlib/ authlib/
COPY cmd/authbridge/ cmd/authbridge/

RUN cd cmd/authbridge && CGO_ENABLED=0 GOOS=linux go build -o /authbridge .

Check failure on line 23 in authbridge/authproxy/Dockerfile.authbridge

View workflow job for this annotation

GitHub Actions / Dockerfile Lint (Hadolint)

DL3003 warning: Use WORKDIR to switch to a directory

# Stage 2: Get spiffe-helper binary
FROM ghcr.io/spiffe/spiffe-helper:0.11.0 AS spiffe

# Stage 3: Combined runtime
FROM docker.io/envoyproxy/envoy:v1.37.2
FROM docker.io/envoyproxy/envoy:v1.38.0

USER root
RUN apt-get update && \
Expand Down
Loading