From 308c81283fad70393f48a4638a23d6831de423e1 Mon Sep 17 00:00:00 2001 From: ghostry Date: Thu, 20 Jun 2024 11:53:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=B3=BB=E7=BB=9F=E7=89=88?= =?UTF-8?q?=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +-- Dockerfile.gpanel | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51bbc11..563b799 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:bionic +FROM ubuntu:20.04 LABEL maintainer="Ghostry " @@ -8,7 +8,6 @@ RUN apt-get update \ && apt-get install -y git memcached mysql-client libpq-dev python-dev \ && apt-get install -y python3-pip \ && apt dist-upgrade -y \ - && apt-get install -y python3.8 \ && apt clean \ && rm -rf /var/lib/apt/lists/* \ && pip3 install pipenv diff --git a/Dockerfile.gpanel b/Dockerfile.gpanel index 64b6b95..b0f4e64 100644 --- a/Dockerfile.gpanel +++ b/Dockerfile.gpanel @@ -2,11 +2,6 @@ FROM ghostry/python-work:latest LABEL maintainer="Ghostry " -RUN apt-get update \ - && apt-get install -y python3.8 \ - && apt clean \ - && rm -rf /var/lib/apt/lists/* - ADD Pipfile /data/Pipfile RUN cd /data \