From edb59bd47281c7edb6a03261b8697a3486ccab94 Mon Sep 17 00:00:00 2001 From: qpismont Date: Tue, 25 Feb 2025 21:06:04 +0000 Subject: [PATCH] fix docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e1465b..027d256 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,12 +12,12 @@ RUN chmod +x scripts/build.sh && \ ./scripts/build.sh -FROM debian:bookworm-slim AS runner +FROM debian:bookworm-slim WORKDIR /app RUN apt update &&\ - apt install bash curl -y &&\ + apt install bash curl wget -y &&\ wget https://github.com/golang-migrate/migrate/releases/download/v4.18.2/migrate.linux-amd64.deb &&\ dpkg -i migrate.linux-amd64.deb &&\ rm migrate.linux-amd64.deb &&\