From 05bf884aa129f32e7296e36d0bebaf059719f533 Mon Sep 17 00:00:00 2001 From: Jelson Rodrigues Date: Mon, 6 Oct 2025 09:14:44 -0300 Subject: [PATCH] fix: set main branch for image build --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index baa5930..5756a2a 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,7 @@ FROM docker.io/rust:1.90 AS build COPY . /app WORKDIR /app +RUN git checkout main RUN cargo build --release # FROM docker.io/alpine:3.22.1 AS production