serverless/Dockerfile
2017-04-27 12:35:30 +02:00

11 lines
250 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 aws-cli
RUN pip install awscli