Last active
July 30, 2020 21:53
-
-
Save adamdriscoll/1a2d92e9bc60eb1cbcc329d1da4d4eed to your computer and use it in GitHub Desktop.
PowerShell Universal dockerfile
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
FROM mcr.microsoft.com/powershell:lts-ubuntu-18.04 | |
LABEL description="Universal - The ultimate platform for building web-based IT Tools" | |
EXPOSE 5000 | |
COPY [ "./stage", "/home/" ] | |
ENTRYPOINT ["./home/Universal/Universal.Server"] |
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
docker tag universal "ironmansoftware/universal:1.3.0" | |
docker push "ironmansoftware/universal:1.3.0" | |
docker tag universal "ironmansoftware/universal:latest" | |
docker push "ironmansoftware/universal:latest" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment