2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-01-19 08:34:30 +00:00
nushell/docker/Package.glibc-distroless.Dockerfile

12 lines
219 B
Docker
Raw Normal View History

ARG base
FROM debian:stable-slim AS patch
FROM ${base}
ARG artifact
COPY ${artifact} /bin/
COPY --from=patch \
/lib/x86_64-linux-gnu/libz.so.1 \
/lib/x86_64-linux-gnu/
ENTRYPOINT ["/bin/nu"]