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

This commit is contained in:
usbharu 2024-12-01 23:28:11 +09:00
parent 9f4c5515c5
commit a6fc757571
Signed by: usbharu
GPG Key ID: 95CBCF7046307B77
1 changed files with 1 additions and 1 deletions

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"]