-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New repos for base images from various Linux distributions
- Loading branch information
Showing
4 changed files
with
26 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM almalinux:latest | ||
MAINTAINER Valentin Kuznetsov vkuznet@gmail.com | ||
RUN yum install -y curl-minimal libcurl-minimal vim python3-pycurl pip sudo less \ | ||
&& yum clean all && rm -rf /var/cache/yum |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Step 3/3 : RUN yum install -y curl vim python3 pip sudo less && yum clean all && rm -rf /var/cache/yum | ||
---> Running in 77dbadded671 | ||
AlmaLinux 9 - AppStream 12 MB/s | 9.1 MB 00:00 | ||
AlmaLinux 9 - BaseOS 12 MB/s | 4.7 MB 00:00 | ||
AlmaLinux 9 - Extras 47 kB/s | 17 kB 00:00 | ||
Package python3-3.9.18-1.el9_3.x86_64 is already installed. | ||
Package less-590-2.el9_2.x86_64 is already installed. | ||
Error: | ||
Problem: problem with installed package curl-minimal-7.76.1-26.el9_3.2.x86_64 | ||
- package curl-minimal-7.76.1-26.el9_3.2.x86_64 from @System conflicts with curl provided by curl-7.76.1-26.el9_3.2.x86_64 from baseos | ||
- package curl-minimal-7.76.1-26.el9.x86_64 from baseos conflicts with curl provided by curl-7.76.1-26.el9_3.2.x86_64 from baseos | ||
- package curl-minimal-7.76.1-26.el9_3.2.x86_64 from baseos conflicts with curl provided by curl-7.76.1-26.el9_3.2.x86_64 from baseos | ||
- cannot install the best candidate for the job | ||
(try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages) |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM debian:sid-slim | ||
MAINTAINER Valentin Kuznetsov vkuznet@gmail.com | ||
RUN apt-get update && \ | ||
apt-get install -y curl libcurl4-openssl-dev vim python3-pycurl pip sudo less |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM cern/cc7-base:latest | ||
MAINTAINER Valentin Kuznetsov vkuznet@gmail.com | ||
RUN yum install -y curl lbcurl ibcurl-openssl-devel vim python3 pip python36-pycurl sudo less \ | ||
&& yum clean all && rm -rf /var/cache/yum |