Skip to content

Instantly share code, notes, and snippets.

@baio
Created October 27, 2017 13:54
Show Gist options
  • Save baio/3bb1097dd48510ddb5cf5fc01fe17c73 to your computer and use it in GitHub Desktop.
Save baio/3bb1097dd48510ddb5cf5fc01fe17c73 to your computer and use it in GitHub Desktop.
baio/node-ps
# 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