diff --git a/Dockerfile b/Dockerfile index 7465352..6353a55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,12 @@ COPY . . RUN cargo build --target $target --release -FROM scratch +FROM alpine:latest + +ARG editor=vim + +RUN apk add --no-cache $editor +ENV EDITOR=$editor WORKDIR /fingerlink