Skip to content

Commit

Permalink
fix workflow and dockerfile (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin authored Nov 25, 2023
1 parent a02c578 commit bdd9d8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./cmd/${{ github.event.inputs.image }}
context: .
file: ./cmd/${{ github.event.inputs.image }}/Dockerfile
push: true
tags: |
Expand Down
1 change: 1 addition & 0 deletions cmd/calidum-rotae-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN apk add --no-cache --update ca-certificates

WORKDIR /app

COPY go.mod go.sum ./
COPY go.* ./
RUN go mod download

Expand Down
1 change: 1 addition & 0 deletions cmd/discord-provider/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN apk add --no-cache --update ca-certificates

WORKDIR /app

COPY go.mod go.sum ./
COPY go.* ./
RUN go mod download

Expand Down
1 change: 1 addition & 0 deletions cmd/email-provider/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ RUN apk add --no-cache --update ca-certificates

WORKDIR /app

COPY go.mod go.sum ./
COPY go.* ./
RUN go mod download

Expand Down

0 comments on commit bdd9d8b

Please sign in to comment.