Skip to content

Commit

Permalink
deckerfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeMaster482 committed Nov 29, 2023
1 parent 093ce8d commit 3375ad6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/account.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download
RUN go clean --modcache
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -o account ./cmd/account/account.go

FROM scratch AS run
FROM golang:1.21.0-alpine AS run

WORKDIR /docker-hammywallet/

Expand Down
2 changes: 1 addition & 1 deletion build/auth.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download
RUN go clean --modcache
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -o auth ./cmd/auth/main.go

FROM scratch AS run
FROM golang:1.21.0-alpine AS run

WORKDIR /docker-hammywallet/

Expand Down
2 changes: 1 addition & 1 deletion build/category.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN go mod download
RUN go clean --modcache
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -o category ./cmd/category/category.go

FROM scratch AS run
FROM golang:1.21.0-alpine AS run

WORKDIR /docker-hammywallet/

Expand Down

0 comments on commit 3375ad6

Please sign in to comment.