Skip to content

Commit

Permalink
paths
Browse files Browse the repository at this point in the history
  • Loading branch information
olegdayo committed Dec 1, 2024
1 parent acbf0fe commit 48bbb91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/back/gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:alpine AS builder
WORKDIR /app
COPY . .
RUN apk add --no-cache make
RUN go build -ldflags "-s -w" -o ./bin/gateway ./code/back/gateway/cmd
RUN go build -ldflags "-s -w" -o ./bin/gateway ./cmd

FROM alpine:latest AS runner
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion code/back/integrator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM golang:alpine AS builder
WORKDIR /app
COPY . .
RUN apk add --no-cache make
RUN go build -ldflags "-s -w" -o ./bin/integrator ./code/back/integrator/cmd
RUN go build -ldflags "-s -w" -o ./bin/integrator ./cmd

FROM alpine:latest AS runner
WORKDIR /app
Expand Down

0 comments on commit 48bbb91

Please sign in to comment.