Add busybox as base image

This commit is contained in:
Fahmi Akbar Wildana
2019-09-08 22:31:10 +07:00
parent c9c9112155
commit 21896b200c
4 changed files with 34 additions and 10 deletions

View File

@ -1,5 +1,6 @@
ARG artifact
ARG base
FROM ${base}
COPY target/release/nu* /bin/
COPY ${artifact} /bin/
ENTRYPOINT ["nu"]

View File

@ -8,3 +8,4 @@ services:
dockerfile: docker/Package.Dockerfile
args:
base: ${BASE_IMAGE}
artifact: ${NU_BINS}