Skip to content

Commit

Permalink
Build and push docker image (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-21 authored May 23, 2024
1 parent 179d05e commit 21cebe7
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 20 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
Dockerfile
compose.yaml
target
!target/release/server
46 changes: 46 additions & 0 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Create and publish a Docker image

on:
push:
branches:
- main

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Setup rust
uses: actions-rs/toolchain@v1.0.6
with:
profile: minimal
toolchain: stable
- name: Checkout repository
uses: actions/checkout@v4
- name: Build release
run: cargo build --release --bin server
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
graph.db3
target
Cargo.lock
Cargo.lock
23 changes: 9 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
FROM rust:1.74 as builder
WORKDIR /crates
COPY ./ ./
RUN --mount=type=cache,target=/usr/local/cargo/git \
--mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,sharing=private,target=/crates/target \
cargo install --path server

FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y sqlite3 && rm -rf /var/lib/apt/lists/*
WORKDIR /server
COPY --from=builder /usr/local/cargo/bin/server .
COPY --from=builder /crates/templates ./templates
COPY --from=builder /crates/graph.db3 .
CMD ["/server/server"]

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates sqlite3
RUN update-ca-certificates

COPY graph.db3 .
COPY templates/ templates/
COPY target/release/server .

CMD ["./server"]
Binary file added graph.db3
Binary file not shown.
12 changes: 9 additions & 3 deletions server/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use invoice_detective::{InvoiceDetective, RecipientNode, ServiceKind};
use rocket::{get, launch, routes};
use rocket::{get, launch, routes, Config};
use rocket_dyn_templates::{context, Template};
use std::net::Ipv4Addr;
use thousands::Separable;

#[get("/")]
Expand Down Expand Up @@ -75,8 +76,13 @@ fn format_msat(msat: Option<u64>) -> String {

#[launch]
fn rocket() -> _ {
// TODO: Customize template directory.
rocket::build()
let config = Config {
port: 8000,
address: Ipv4Addr::new(0, 0, 0, 0).into(),
log_level: rocket::config::LogLevel::Normal,
..Config::debug_default()
};
rocket::custom(&config)
.mount("/", routes![index, invoice])
.attach(Template::fairing())
}
Expand Down
4 changes: 3 additions & 1 deletion templates/base.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@
</main>

<footer>
<a href="https://github.com/andrei-21/invoice-detective">Github page</a>
Made by
<a href="https://lipa.swiss">lipa</a> —
<a href="https://github.com/getlipa/invoice-detective">Github page</a>
</footer>
</body>
</html>

0 comments on commit 21cebe7

Please sign in to comment.