-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove base image multi-stage build
- Loading branch information
Showing
1 changed file
with
1 addition
and
3 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,6 +1,6 @@ | ||
# Apache License 2.0 | ||
|
||
FROM ubuntu:20.04 as base1 | ||
FROM ubuntu:20.04 as base | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
|
@@ -85,8 +85,6 @@ RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.8 && \ | |
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11 && \ | ||
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12 | ||
|
||
FROM base1 as base2 | ||
|
||
## Python tools | ||
|
||
RUN apt-get update -y \ | ||
|