Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/release/fedora26/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ LABEL maintainer="PowerShell Team <[email protected]>" \
RUN dnf install -y \
curl \
glibc-locale-source \
&& dnf upgrade-minimal -y --security \
&& dnf clean all

# Setup the locale
Expand Down
2 changes: 2 additions & 0 deletions docker/release/fedora27/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ LABEL maintainer="PowerShell Team <[email protected]>" \
RUN dnf install -y \
curl \
glibc-locale-source \
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should consider adding the folloiwng to the image

dnf upgrade-minimal -y --security

This will apply any security updates to the image.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be a good idea. I've added this change and rerun package tests - build time does not seem to be impacted much.

compat-openssl10 \
&& dnf upgrade-minimal -y --security \
&& dnf clean all

# Setup the locale
Expand Down
4 changes: 3 additions & 1 deletion docker/tests/Templates/fedora26/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ RUN dnf install -y \
curl \
glibc-locale-source \
compat-openssl10 \
git
git \
&& dnf upgrade-minimal -y --security \
&& dnf clean all

# Setup the locale
ENV LANG en_US.UTF-8
Expand Down
5 changes: 4 additions & 1 deletion docker/tests/Templates/fedora27/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ ARG GITLOCATION=https://github.com/PowerShell/PowerShell.git
RUN dnf install -y \
curl \
glibc-locale-source \
git
git \
compat-openssl10 \
&& dnf upgrade-minimal -y --security \
&& dnf clean all

# Setup the locale
ENV LANG en_US.UTF-8
Expand Down
29 changes: 0 additions & 29 deletions docker/tests/Templates/kalilinux/Dockerfile

This file was deleted.