Skip to content

Commit e0ee13c

Browse files
AndrewTravisEz13
authored andcommitted
Updates to fedora27 and kalilinux dockerfiles (#6819)
This PR addresses 2 issues: fedora27 dockerfiles were missing compat-openssl10 prerequisite that on Linux-based Docker hosts produced error No usable version of the libssl was found during Restore-PSPester. kalilinux PS package validation is failing because of open issue #5413 , so disabling this config for now.
1 parent d96a321 commit e0ee13c

5 files changed

Lines changed: 10 additions & 31 deletions

File tree

docker/release/fedora26/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ LABEL maintainer="PowerShell Team <[email protected]>" \
2626
RUN dnf install -y \
2727
curl \
2828
glibc-locale-source \
29+
&& dnf upgrade-minimal -y --security \
2930
&& dnf clean all
3031

3132
# Setup the locale

docker/release/fedora27/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ LABEL maintainer="PowerShell Team <[email protected]>" \
2626
RUN dnf install -y \
2727
curl \
2828
glibc-locale-source \
29+
compat-openssl10 \
30+
&& dnf upgrade-minimal -y --security \
2931
&& dnf clean all
3032

3133
# Setup the locale

docker/tests/Templates/fedora26/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ RUN dnf install -y \
1010
curl \
1111
glibc-locale-source \
1212
compat-openssl10 \
13-
git
13+
git \
14+
&& dnf upgrade-minimal -y --security \
15+
&& dnf clean all
1416

1517
# Setup the locale
1618
ENV LANG en_US.UTF-8

docker/tests/Templates/fedora27/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ ARG GITLOCATION=https://github.com/PowerShell/PowerShell.git
99
RUN dnf install -y \
1010
curl \
1111
glibc-locale-source \
12-
git
12+
git \
13+
compat-openssl10 \
14+
&& dnf upgrade-minimal -y --security \
15+
&& dnf clean all
1316

1417
# Setup the locale
1518
ENV LANG en_US.UTF-8

docker/tests/Templates/kalilinux/Dockerfile

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)