9 Commits

Author SHA1 Message Date
c7b9a14ff6 revert 24f04a7e82
revert try to do better
2026-01-29 12:43:22 +00:00
75fa8bd4e2 Merge pull request 'revert 30b1c97043f3af895a2797e9941251af2d49ad9b' (#19) from arrelin-patch-1 into master
Some checks failed
Build and Publish Images / build-and-push (push) Failing after 9s
Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/19
2026-01-29 12:38:28 +00:00
5bcabb2736 revert 30b1c97043
revert Merge pull request 'try to do better' (#18) from refactor/frontend-code-quality into master

Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/18
2026-01-29 12:38:21 +00:00
30b1c97043 Merge pull request 'try to do better' (#18) from refactor/frontend-code-quality into master
All checks were successful
Build and Publish Images / build-and-push (push) Successful in 13s
Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/18
2026-01-29 12:32:41 +00:00
arrelin
b88eb4a9e3 try to do better 2026-01-29 15:32:22 +03:00
8334c848f1 Merge pull request 'try to do better' (#17) from refactor/frontend-code-quality into master
Some checks failed
Build and Publish Images / build-and-push (push) Failing after 13s
Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/17
2026-01-29 12:18:22 +00:00
arrelin
24f04a7e82 try to do better 2026-01-29 15:17:54 +03:00
f00ddc7d10 Merge pull request 'try arch docker' (#16) from feature/arch-in-docker into master
All checks were successful
Build and Publish Images / build-and-push (push) Successful in 2m37s
Reviewed-on: http://192.168.31.100:3847/Arrelin/family_budget/pulls/16
2026-01-28 08:58:05 +00:00
arrelin
332c9e141b try arch docker 2026-01-28 11:57:51 +03:00

View File

@@ -1,4 +1,8 @@
FROM rust:bookworm AS builder FROM archlinux:latest AS builder
RUN pacman -Syu --noconfirm && \
pacman -S --noconfirm rust cargo && \
pacman -Scc --noconfirm
WORKDIR /app WORKDIR /app
@@ -11,12 +15,11 @@ COPY src ./src
RUN touch src/main.rs RUN touch src/main.rs
RUN cargo build --release RUN cargo build --release
FROM debian:bookworm-slim FROM archlinux:latest
RUN apt-get update && apt-get install -y \ RUN pacman -Syu --noconfirm && \
libssl3 \ pacman -S --noconfirm openssl ca-certificates && \
ca-certificates \ pacman -Scc --noconfirm
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app