Enable very rudimentary CI/CD #1
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue