Created
October 27, 2017 13:54
-
-
Save baio/3bb1097dd48510ddb5cf5fc01fe17c73 to your computer and use it in GitHub Desktop.
baio/node-ps
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
# BUILD image | |
FROM node:stretch | |
LABEL author="Max Putilov" | |
# Install powershell >>>>> | |
RUN apt-get update | |
RUN apt-get install -y curl gnupg apt-transport-https | |
# Import the public repository GPG keys | |
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - | |
# Register the Microsoft Product feed | |
RUN sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-debian-stretch-prod stretch main" > /etc/apt/sources.list.d/microsoft.list' | |
# Update the list of products | |
RUN apt-get update | |
# Install PowerShell | |
RUN apt-get install -y powershell | |
# <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment