1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-22 03:27:30 +01: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"]