Skip to content

Commit

Permalink
auth-server no longer uses separate go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
sechmann committed May 16, 2024
1 parent 5427a06 commit 9696e8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/controlplane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
- name: Build and push auth-server
uses: docker/build-push-action@v2
with:
context: ./cmd/auth-server/
context: .
file: cmd/auth-server/Dockerfile
push: true
tags: ${{ steps.metadata.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion cmd/auth-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download
COPY . /workspace

# Build
RUN CGO_ENABLED=0 go build -o auth-server .
RUN CGO_ENABLED=0 go build -o auth-server ./cmd/auth-server

FROM alpine:3.15
WORKDIR /
Expand Down

0 comments on commit 9696e8a

Please sign in to comment.