Update some stuff, now everything must work

This commit is contained in:
Nikolai Rodionov
2023-01-18 13:28:57 +01:00
parent ce0a54a08b
commit 18fd9d827b
6 changed files with 56 additions and 8 deletions

View File

@ -7,6 +7,7 @@ RUN cargo build --release
FROM alpine:3.17.1
COPY --from=builder /src/target/release/clin /bin/clin
RUN apk update && apk add openssl --no-cache
RUN apk update && apk add --no-cache libressl-dev libc6-compat
RUN chmod +x /bin/clin
WORKDIR /workdir
ENTRYPOINT ["/bin/clin"]