Skip to content

Commit

Permalink
ci, dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Jul 1, 2024
1 parent 08b5de3 commit 3260b28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: v0.9.1
- name: Login to GHCR
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -66,4 +64,7 @@ jobs:
push: ${{ github.ref == 'refs/heads/master' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max


2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ RUN cargo build --release
FROM debian:bookworm-slim AS runtime
WORKDIR /app

RUN apt-get update

COPY --from=builder /app/target/release/namada-faucet /app/server

CMD ["./server"]

0 comments on commit 3260b28

Please sign in to comment.