Skip to content

Instantly share code, notes, and snippets.

@kazuhisya
Created August 19, 2016 08:12
Show Gist options
  • Save kazuhisya/0803e2bd3a9436a7ef5b5d2ddb3ad6de to your computer and use it in GitHub Desktop.
Save kazuhisya/0803e2bd3a9436a7ef5b5d2ddb3ad6de to your computer and use it in GitHub Desktop.
Powershell on CentOS7
FROM centos:7
RUN curl -OL https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.9/powershell-6.0.0_alpha.9-1.el7.centos.x86_64.rpm
RUN yum install ./powershell-6.0.0_alpha.9-1.el7.centos.x86_64.rpm -y
CMD ["/usr/bin/powershell"]
@kazuhisya
Copy link
Author

# docker run -it local/powershell
PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.

PS /> 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment