From d30093a39ecee8761183e0b67175442e3ba5f1b9 Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 16 May 2023 18:40:44 -0400 Subject: [PATCH] update containerfile --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 530ba93..9438493 100644 --- a/Containerfile +++ b/Containerfile @@ -7,7 +7,7 @@ RUN go build FROM debian:stable-slim as final WORKDIR /srv/ RUN mkdir /srv/simpbot -RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2 +RUN mkdir -p /lib64 COPY --from=builder /go/src/app/simpbot /srv/simpbot/ CMD ["/srv/simpbot/simpbot"]