Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Docker image file that describes an fedora 25 image with PowerShell installed from Microsoft YUM Repo
ARG FromTag=26
# Docker image file that describes an fedora 28 image with PowerShell installed from Microsoft YUM Repo
ARG FromTag=28

FROM fedora:${FromTag}

ARG POWERSHELL_VERSION=6.0.2
ARG IMAGE_NAME=microsoft/powershell:fedora26
ARG IMAGE_NAME=microsoft/powershell:fedora28

LABEL maintainer="PowerShell Team <[email protected]>" \
readme.md="https://github.com/PowerShell/PowerShell/blob/master/docker/README.md" \
Expand All @@ -27,6 +27,7 @@ LABEL maintainer="PowerShell Team <[email protected]>" \
RUN dnf install -y \
curl \
glibc-locale-source \
compat-openssl10 \
&& dnf upgrade-minimal -y --security \
&& dnf clean all

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:26
FROM fedora:28

ARG PSVERSIONSTUB=6.0.2
ARG PACKAGELOCATIONSTUB
Expand Down