Skip to content

Commit e53576b

Browse files
committed
Hotfix: new solution for 'no such file or directory' on docker images
1 parent 6b469b1 commit e53576b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ FROM golang:latest AS build
55
WORKDIR /go/src/app
66
COPY . .
77

8-
RUN make build-static
8+
RUN make build
99

1010
# Now copy it into our base image.
11-
FROM gcr.io/distroless/static-debian12
11+
FROM debian:12-slim
1212
COPY --from=build /go/src/app/bin/ws4sql /
1313

1414
EXPOSE 12321

0 commit comments

Comments
 (0)