Skip to content

Instantly share code, notes, and snippets.

@adamdriscoll
Last active July 30, 2020 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamdriscoll/1a2d92e9bc60eb1cbcc329d1da4d4eed to your computer and use it in GitHub Desktop.
Save adamdriscoll/1a2d92e9bc60eb1cbcc329d1da4d4eed to your computer and use it in GitHub Desktop.
PowerShell Universal dockerfile
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"]
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