build dockerfile
Some checks failed
ci / docker-build (push) Failing after 36s

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
Frank Villaro-Dixon 2024-05-24 22:16:21 +02:00
parent 2cda158897
commit bf3bf693bd
3 changed files with 67 additions and 0 deletions

2
.dockerignore Normal file
View file

@ -0,0 +1,2 @@
.git
target

View file

@ -0,0 +1,42 @@
name: ci
on:
push:
branches:
- docker
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Forge Hub
uses: docker/login-action@v3
with:
registry: forge.k3s.fr
username: ${{ secrets.FORGEHUB_USERNAME }}
password: ${{ secrets.FORGEHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: forge.k3s.fr/frank/opentsdb-auth-proxy:latest
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.FORGEHUB_USERNAME }}
password: ${{ secrets.FORGEHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: frankkkkk/opentsdb-auth-proxy:latest

23
Dockerfile Normal file
View file

@ -0,0 +1,23 @@
FROM rust:1.78 AS chef
# We only pay the installation cost once,
# it will be cached from the second build onwards
RUN cargo install cargo-chef
WORKDIR app
FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json
FROM chef AS builder
COPY --from=planner /app/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer!
RUN cargo chef cook --release --recipe-path recipe.json
# Build application
COPY . .
RUN cargo build --release --bin opentsdb-auth-proxy
# We do not need the Rust toolchain to run the binary!
FROM ubuntu:22.04
WORKDIR app
COPY --from=builder /app/target/release/opentsdb-auth-proxy /usr/local/bin
ENTRYPOINT ["/usr/local/bin/opentsdb-auth-proxy"]