fix コンテナ内でtlsが使えない状態だったので修正
build and deploy / build (push) Successful in 1m16s

This commit is contained in:
2024-12-01 23:28:11 +09:00
parent 9f4c5515c5
commit a6fc757571
+1 -1
View File
@@ -7,6 +7,6 @@ COPY . /workdir
RUN go build -ldflags='-s -w' -o app .
FROM debian:bookworm-slim
RUN apt update && apt upgrade && apt install ca-certificates openssl
RUN apt update -y && apt upgrade -y && apt install ca-certificates openssl -y
COPY --from=build /workdir/app app
ENTRYPOINT ["/app"]