File tree 2 files changed +9
-6
lines changed
.github/workflows/dockerfiles
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM centos:7
15
+ FROM centos:latest
16
16
17
17
18
- ENV LANG en_US.UTF-8
19
- ENV LANGUAGE en_US:en
20
- ENV LC_ALL en_US.UTF-8
21
-
22
18
ARG github_repo=jmcgeheeiv/pyfakefs
23
19
ARG github_branch=master
24
20
21
+ RUN cd /etc/yum.repos.d/
22
+ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
23
+ RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
25
24
RUN yum install -y python3-pip unzip wget
26
25
26
+ ENV LANG en_US.UTF-8
27
+ ENV LANGUAGE en_US:en
28
+ ENV LC_COLLATE C.UTF-8
29
+
27
30
RUN useradd -u 1000 pyfakefs
28
31
29
32
RUN mkdir -p work \
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM fedora:32
15
+ FROM fedora:latest
16
16
17
17
18
18
ENV LANG en_US.UTF-8
You can’t perform that action at this time.
0 commit comments