-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ghostry
committed
Jun 20, 2024
1 parent
7c83bc6
commit 308c812
Showing
2 changed files
with
1 addition
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:bionic | ||
FROM ubuntu:20.04 | ||
|
||
LABEL maintainer="Ghostry <[email protected]>" | ||
|
||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,6 @@ FROM ghostry/python-work:latest | |
|
||
LABEL maintainer="Ghostry <[email protected]>" | ||
|
||
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 \ | ||
|