serverless/Dockerfile
2017-08-17 10:09:47 +02:00

14 lines
324 B
Docker

FROM node:latest
# install yarn
RUN curl -o- -L https://yarnpkg.com/install.sh | bash
# install python tooling
RUN apt-get update -y && apt-get install -y python-dev python-pip && pip install --upgrade pip
# install other utils
RUN apt-get update -y && apt-get install -y screen
# install aws-cli
RUN pip install awscli