Compare commits
No commits in common. "237fc1eb70836052931e5aad39c81a1494c25f7b" and "4aa7aa99f95693420811b746e0360a71e9172e50" have entirely different histories.
237fc1eb70
...
4aa7aa99f9
2 changed files with 2 additions and 13 deletions
|
@ -10,8 +10,6 @@ jobs:
|
|||
docker:
|
||||
name: docker build
|
||||
runs-on: ubuntu-22.04
|
||||
needs:
|
||||
- test
|
||||
steps:
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
|
@ -20,8 +18,4 @@ jobs:
|
|||
- uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: karcsesz/fingerlink:latest
|
||||
- uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
tags: karcsesz/fingerlink:latest-nano
|
||||
tags: karcsesz/fingerlink:latest
|
|
@ -13,13 +13,8 @@ COPY . .
|
|||
|
||||
RUN cargo build --target $target --release
|
||||
|
||||
FROM alpine:latest
|
||||
FROM scratch
|
||||
|
||||
ARG editor=vim
|
||||
|
||||
RUN apk add --no-cache $editor
|
||||
ENV EDITOR=$editor
|
||||
ENV PATH="${PATH}:/fingerlink"
|
||||
WORKDIR /fingerlink
|
||||
|
||||
COPY --from=builder /fingerlink/target/x86_64-unknown-linux-musl/release/fingerlink /fingerlink/fingerlink
|
||||
|
|
Loading…
Reference in a new issue