From 223edbac39cddcd9460a46bcb449e783c543e15c Mon Sep 17 00:00:00 2001 From: Kwankyu Lee Date: Tue, 29 Oct 2024 17:27:32 +0900 Subject: [PATCH] Change base image --- .github/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/Dockerfile b/.github/Dockerfile index 198281f..0aa6576 100644 --- a/.github/Dockerfile +++ b/.github/Dockerfile @@ -20,8 +20,7 @@ RUN find /sage -type d -name "__pycache__" -exec rm -rf {} + # Remove all .c .cpp files corresponding to .pyx files RUN find /sage -name "*.pyx" | sed 's/\(.*\)[.]pyx$/\1.c \1.cpp/' | xargs rm -f + -FROM ubuntu:jammy -# or FROM ghcr.io/sagemath/sage/sage-ubuntu-jammy-minimal-with-system-packages:latest +FROM ghcr.io/sagemath/sage/sage-ubuntu-jammy-minimal-with-system-packages:latest USER root