From 71a96f722e003f0d1a10566c665f1b0926e6c309 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Salinas Date: Sat, 14 Jun 2025 19:37:46 -0400 Subject: [PATCH] fix: docker build (#52) Reviewed-on: https://oolong.ludwig.dog/pitbuster/huellas/pulls/52 Co-authored-by: Felipe Contreras Salinas Co-committed-by: Felipe Contreras Salinas --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5474a30..3cf6768 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ##### Builder #### -FROM rust:1.76-alpine3.19 as builder +FROM rust:1.87-alpine3.20 AS builder # Install dependencies RUN apk add --no-cache sqlite npm musl-dev fd minify && npm install -g typescript @@ -46,7 +46,7 @@ RUN fd -e html . '/usr/src/huellas/static/' -x minify -r -o {} {} \ ################ ##### Runtime -FROM alpine:3.19 AS Runtime +FROM alpine:3.20 AS runtime RUN apk add --no-cache sqlite