-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing storage dependency for the tests (#1199)
- Loading branch information
1 parent
6f896ab
commit 0d287bc
Showing
17 changed files
with
33 additions
and
32 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
ARG BASE_IMAGE | ||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
FROM ${BASE_IMAGE} | ||
|
||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
|
||
ENV AzureFunctionsJobHost__Logging__Console__IsEnabled=true | ||
COPY ${CONTENT_PKG} content.zip | ||
|
||
RUN apk update && apk add --no-cache zip unzip curl && \ | ||
curl -o content.zip "${CONTENT_URL}" && \ | ||
mkdir -p /home/site/wwwroot && \ | ||
yes | unzip -q content.zip -d /home/site/wwwroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
ARG BASE_IMAGE | ||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
FROM ${BASE_IMAGE} | ||
|
||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
|
||
ENV AzureFunctionsJobHost__Logging__Console__IsEnabled=true | ||
|
||
RUN curl -O https://packages.microsoft.com/azurelinux/3.0/prod/base/x86_64/Packages/u/unzip-6.0-21.azl3.x86_64.rpm | ||
RUN tdnf install -y unzip-6.0-21.azl3.x86_64.rpm | ||
|
||
RUN curl -o content.zip "${CONTENT_URL}" && \ | ||
mkdir -p /home/site/wwwroot && \ | ||
COPY ${CONTENT_PKG} content.zip | ||
|
||
RUN mkdir -p /home/site/wwwroot && \ | ||
yes | unzip -q content.zip -d /home/site/wwwroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
ARG BASE_IMAGE | ||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
FROM ${BASE_IMAGE} | ||
|
||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
|
||
ENV AzureFunctionsJobHost__Logging__Console__IsEnabled=true | ||
|
||
COPY ${CONTENT_PKG} content.zip | ||
|
||
RUN yum install -y dnf && \ | ||
dnf install -y zip unzip curl && \ | ||
curl -o content.zip "${CONTENT_URL}" && \ | ||
mkdir -p /home/site/wwwroot && \ | ||
yes | unzip -q content.zip -d /home/site/wwwroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
ARG BASE_IMAGE | ||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
FROM ${BASE_IMAGE} | ||
|
||
ARG CONTENT_URL | ||
ARG CONTENT_PKG | ||
|
||
ENV AzureFunctionsJobHost__Logging__Console__IsEnabled=true | ||
|
||
COPY ${CONTENT_PKG} content.zip | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y zip unzip curl && \ | ||
curl -o content.zip "${CONTENT_URL}" && \ | ||
mkdir -p /home/site/wwwroot && \ | ||
yes | unzip -q content.zip -d /home/site/wwwroot |