Created
April 5, 2018 18:23
-
-
Save gabrielrojasnyc/4100309a278083a5992edef05d61852b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Microsoft Powershell Ubuntu image | |
FROM microsoft/powershell | |
LABEL version=0.1 | |
WORKDIR /tmp | |
#Update and install Java | |
RUN apt-get update -y | |
RUN apt-get install default-jre -y | |
RUN apt-get upgrade powershell -y | |
#Files to be copy for demo but this should be downloaded from GIT repo | |
COPY test.ps1 /tmp/test.ps1 | |
#Expose Port | |
EXPOSE 22 8500 50000 | |
CMD /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment