-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
1 changed file
with
4 additions
and
4 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 @@ | ||
# syntax=docker/dockerfile:1.2 | ||
|
||
FROM quay.io/centos/centos:stream8 | ||
FROM quay.io/generic/rocky9 | ||
MAINTAINER "Will Szumski" <[email protected]> | ||
|
||
ENV container docker | ||
|
@@ -18,9 +18,9 @@ ENV container docker | |
|
||
# CMD ["/usr/sbin/init"] | ||
|
||
RUN sed -i -e 's/^mirrorlist/#mirrorlist/g' \ | ||
-e 's/^#baseurl/baseurl/g' \ | ||
-e 's/mirror\.centos\.org/vault.centos.org/g' /etc/yum.repos.d/CentOS-Stream-*.repo | ||
# RUN sed -i -e 's/^mirrorlist/#mirrorlist/g' \ | ||
# -e 's/^#baseurl/baseurl/g' \ | ||
# -e 's/mirror\.centos\.org/vault.centos.org/g' /etc/yum.repos.d/CentOS-Stream-*.repo | ||
|
||
RUN dnf update -y && \ | ||
dnf install -y gcc git vim python3-pyyaml python3-virtualenv libffi-devel sudo which openssh-server \ | ||
|