| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3d4ce51 commit 16019e2
12 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,6 +19,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 19 | 19 | ||
| 20 | 20 | # Add these as a separate layer as they get updated frequently | |
| 21 | 21 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 22 | - pip install -U virtualenv pipenv awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 22 | + pip install -U virtualenv pipenv awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 23 | 23 | ||
| 24 | 24 | CMD ["dotnet", "build"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,6 +19,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 19 | 19 | ||
| 20 | 20 | # Add these as a separate layer as they get updated frequently | |
| 21 | 21 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 22 | - pip install -U virtualenv pipenv awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 22 | + pip install -U virtualenv pipenv awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 23 | 23 | ||
| 24 | 24 | CMD ["dotnet", "build"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 16 | 16 | ||
| 17 | 17 | # Add these as a separate layer as they get updated frequently | |
| 18 | 18 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 19 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 19 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 20 | 20 | ||
| 21 | 21 | CMD ["dep", "ensure"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,8 +6,14 @@ WORKDIR / | |||
| 6 | 6 | ||
| 7 | 7 | RUN rm -rf /var/runtime /var/lang && \ | |
| 8 | 8 | curl https://lambci.s3.amazonaws.com/fs/java8.tgz | tar -zx -C / && \ | |
| 9 | - yum install -y --releasever=latest java-1.8.0-openjdk-devel-1.8.0.181 | ||
| 9 | + yum install -y --releasever=latest java-1.8.0-openjdk-devel-1.8.0.181 && \ | ||
| 10 | + mkdir /usr/local/gradle && curl -L -o gradle.zip https://services.gradle.org/distributions/gradle-5.2-bin.zip && \ | ||
| 11 | + unzip -d /usr/local/gradle gradle.zip && rm gradle.zip && mkdir /usr/local/maven && \ | ||
| 12 | + curl -L http://mirror.metrocast.net/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz | \ | ||
| 13 | + tar -zx -C /usr/local/maven | ||
| 14 | + | ||
| 15 | + ENV PATH="/usr/local/gradle/gradle-5.2/bin:/usr/local/maven/apache-maven-3.6.0/bin:${PATH}" | ||
| 10 | 16 | ||
| 11 | 17 | # Add these as a separate layer as they get updated frequently | |
| 12 | 18 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 13 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 19 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 11 | 11 | ||
| 12 | 12 | # Add these as a separate layer as they get updated frequently | |
| 13 | 13 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 14 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 14 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 15 | 15 | ||
| 16 | 16 | CMD ["npm", "rebuild"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 11 | 11 | ||
| 12 | 12 | # Add these as a separate layer as they get updated frequently | |
| 13 | 13 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 14 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 14 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 15 | 15 | ||
| 16 | 16 | CMD ["npm", "rebuild"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,6 +11,6 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 11 | 11 | ||
| 12 | 12 | # Add these as a separate layer as they get updated frequently | |
| 13 | 13 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 14 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 14 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| 15 | 15 | ||
| 16 | 16 | CMD ["npm", "rebuild"] | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,4 +2,4 @@ FROM lambci/lambda-base:build | |||
| 2 | 2 | ||
| 3 | 3 | # Add these as a separate layer as they get updated frequently | |
| 4 | 4 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 5 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 5 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,4 +9,4 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 9 | 9 | # Add these as a separate layer as they get updated frequently | |
| 10 | 10 | RUN curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python && \ | |
| 11 | 11 | pip install -U virtualenv pipenv --no-cache-dir && \ | |
| 12 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 12 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -19,4 +19,4 @@ RUN rm -rf /var/runtime /var/lang && \ | |||
| 19 | 19 | # Add these as a separate layer as they get updated frequently | |
| 20 | 20 | RUN pip install -U pip setuptools --no-cache-dir && \ | |
| 21 | 21 | pip install -U virtualenv pipenv --no-cache-dir && \ | |
| 22 | - pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.0.5 --no-cache-dir | ||
| 22 | + pip install -U awscli boto3 aws-sam-cli==0.10.0 aws-lambda-builders==0.1.0 --no-cache-dir | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments