7 lines
212 B
Docker
7 lines
212 B
Docker
FROM docker.io/library/busybox:stable-musl AS busybox
|
|
|
|
FROM docker.io/library/nats:latest
|
|
COPY --from=busybox /bin/busybox /bin/busybox
|
|
COPY --from=busybox /bin/sh /bin/sh
|
|
COPY --from=busybox /bin/wget /bin/wget
|