Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 3.6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM python:3.6-slim-buster

RUN apt-get update && \
Expand All @@ -11,7 +10,7 @@ RUN apt-get update && \
npm=5.8.0+ds6-4+deb10u2 && \
pip3 install --no-cache-dir --upgrade pip==20.1.1 && \
npm install npm@latest -g && \
npm install -g serverless@3.12.0 && \
npm install -g serverless@3.19.0 && \
apt-get -q -y clean && \
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*

Expand Down
4 changes: 1 addition & 3 deletions 3.7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM python:3.7-slim-buster

RUN apt-get update && \
Expand All @@ -11,15 +10,14 @@ RUN apt-get update && \
npm=5.8.0+ds6-4+deb10u2 && \
pip3 install --no-cache-dir --upgrade pip==20.1.1 && \
npm install npm@latest -g && \
npm install -g serverless@3.12.0 && \
npm install -g serverless@3.19.0 && \
apt-get -q -y clean && \
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*

ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash
RUN apt-get install -y nodejs


WORKDIR /work

ENTRYPOINT ["/bin/sh"]
4 changes: 1 addition & 3 deletions 3.8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM python:3.8-slim-buster

RUN apt-get update && \
Expand All @@ -11,15 +10,14 @@ RUN apt-get update && \
npm=5.8.0+ds6-4+deb10u2 && \
pip3 install --no-cache-dir --upgrade pip==20.1.1 && \
npm install npm@latest -g && \
npm install -g serverless@3.12.0 && \
npm install -g serverless@3.19.0 && \
apt-get -q -y clean && \
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*

ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash
RUN apt-get install -y nodejs


WORKDIR /work

ENTRYPOINT ["/bin/sh"]
6 changes: 2 additions & 4 deletions 3.9/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM python:3.9-slim-buster

RUN apt-get update && \
Expand All @@ -9,17 +8,16 @@ RUN apt-get update && \
git=1:2.20.1-2+deb10u3 \
curl \
npm=5.8.0+ds6-4+deb10u2 && \
pip3 install --no-cache-dir --upgrade pip==20.1.1 && \
pip3 install --no-cache-dir --upgrade pip==22.1.2 && \
npm install npm@latest -g && \
npm install -g serverless@3.12.0 && \
npm install -g serverless@3.19.0 && \
apt-get -q -y clean && \
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*

ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash
RUN apt-get install -y nodejs


WORKDIR /work

ENTRYPOINT ["/bin/sh"]