From 1f9d692e9f89c988f4b67d36be697351cf49efd7 Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Fri, 5 Dec 2025 12:44:38 -0800 Subject: [PATCH] Updated dockerfile to fix failing docker image publishing --- docker/Dockerfile | 3 ++- tests/int_local_path_validation.rs | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 54f0959..651c574 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,6 @@ # syntax=docker/dockerfile:1 -FROM alpine:latest +FROM alpine:3.22 +# FROM alpine:latest RUN apk add --no-cache curl tar git diff --git a/tests/int_local_path_validation.rs b/tests/int_local_path_validation.rs index 6287745..f8e2c2a 100644 --- a/tests/int_local_path_validation.rs +++ b/tests/int_local_path_validation.rs @@ -1,5 +1,3 @@ -use std::time::Duration; - use anyhow::Result; use assert_cmd::Command; use tempfile::tempdir;