mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
14 lines
354 B
Docker
14 lines
354 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 --no-cache-dir --upgrade pip
|
|
|
|
# install other utils
|
|
RUN apt-get update -y && apt-get install -y screen
|
|
|
|
# install aws-cli
|
|
RUN pip install --no-cache-dir awscli
|