1
0

Fixed the container image not able to open terminal by adding a lib in Dockerfile

This commit is contained in:
BlueFox 2024-09-21 17:15:17 +02:00
parent a4a332f91e
commit c26be90554

View File

@ -13,14 +13,13 @@ RUN apk update && \
./configure LDFLAGS="-static" && \
make
CMD ["./cmatrix"]
# final cmatrix Container Image
FROM alpine
LABEL org.opencontainers.image.authors="bluefox@privacynerd.de"
RUN apk update && apk add ncurses-terminfo-base
COPY --from=cmatrixbuildimage /cmatrix/cmatrix /cmatrix
CMD ["./cmatrix"]