File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112
112
build-type : release
113
113
114
114
# openSUSE's release cycle: https://endoflife.date/opensuse
115
- - image : opensuse-15_5
115
+ - image : opensuse-15_6
116
116
build-script : rpm_entrypoint.sh
117
117
build-type : release
118
118
steps :
Original file line number Diff line number Diff line change 1
1
# vim: set syntax=dockerfile:
2
- FROM opensuse/leap:15.5
2
+ FROM opensuse/leap:15.6
3
3
4
- LABEL org.opencontainers.image.description="Base image used to build and RPM-package Notes on openSUSE 15.5 "
4
+ LABEL org.opencontainers.image.description="Base image used to build and RPM-package Notes on openSUSE 15.6 "
5
5
6
6
# Install dependencies.
7
7
RUN zypper install -y --no-recommends cmake gcc10-c++ git \
@@ -12,6 +12,9 @@ RUN zypper install -y --no-recommends cmake gcc10-c++ git \
12
12
ENV CC=gcc-10
13
13
ENV CXX=g++-10
14
14
15
+ # Silences locale-related warnings from AutoUic.
16
+ ENV LANG=C.UTF-8
17
+
15
18
# Prevent a fatal error from git: "detected dubious ownership in repository at '/src'".
16
19
RUN git config --global --add safe.directory /src
17
20
You can’t perform that action at this time.
0 commit comments