From 9a4dd34555cd009dbafbe34fdba2eb5b8175d88e Mon Sep 17 00:00:00 2001 From: clackwork <124748154+clackwork@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:49:30 -0800 Subject: [PATCH] Use image python:3.10-alpine --- images/keripy.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/keripy.dockerfile b/images/keripy.dockerfile index 6a155c28e..42d9acf8a 100644 --- a/images/keripy.dockerfile +++ b/images/keripy.dockerfile @@ -1,5 +1,5 @@ # Builder layer -FROM python:3.10.13-alpine3.18 as builder +FROM python:3.10-alpine as builder # Install compilation dependencies RUN apk --no-cache add \ @@ -24,7 +24,8 @@ RUN pip install --upgrade pip && \ mkdir /keripy/src # Copy Python dependency files in -COPY requirements.txt setup.py . +COPY requirements.txt setup.py ./ + # Set up Rust environment and install Python dependencies # Must source the Cargo environment for the blake3 library to see # the Rust intallation during requirements install