From 40bff686308a44ae68289adf734f385af3d4eec5 Mon Sep 17 00:00:00 2001 From: xyny Date: Sun, 22 Sep 2024 14:11:20 +0300 Subject: [PATCH] fix: switch to ubuntu builder, leverage caching better --- Containerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index ce7bf7a..42311bd 100644 --- a/Containerfile +++ b/Containerfile @@ -1,4 +1,8 @@ -FROM alpine:3.20 as build +FROM ubuntu:20.04 as cached + +RUN apt-get update && apt-get install -y wget + +FROM cached as build ARG URL=https://github.com/nushell/nushell/releases/download/0.98.0/nu-0.98.0-x86_64-unknown-linux-gnu.tar.gz