-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new docker images to v2 pipeline for integration testing (#756)
--------- Co-authored-by: Aphral Griffin <[email protected]>
- Loading branch information
1 parent
8e40275
commit 9a05ed0
Showing
24 changed files
with
253 additions
and
276 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ARG CONTAINER_NGINX_IMAGE_REGISTRY | ||
ARG TAG | ||
ARG IMAGE_PATH | ||
FROM ${CONTAINER_NGINX_IMAGE_REGISTRY}${IMAGE_PATH}:${TAG} AS install | ||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ARG OS_RELEASE | ||
ARG OS_VERSION | ||
ARG PACKAGE_NAME | ||
ARG CONTAINER_OS_TYPE | ||
|
||
WORKDIR /agent | ||
COPY ./build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} /agent/build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} | ||
COPY ./ /agent | ||
|
||
RUN apk add --allow-untrusted /agent/build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} | ||
|
||
RUN unlink /var/log/nginx/access.log | ||
RUN unlink /var/log/nginx/error.log |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ARG CONTAINER_NGINX_IMAGE_REGISTRY | ||
ARG TAG | ||
ARG IMAGE_PATH | ||
FROM ${CONTAINER_NGINX_IMAGE_REGISTRY}${IMAGE_PATH}:${TAG} AS install | ||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ARG OS_RELEASE | ||
ARG OS_VERSION | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
ARG PACKAGE_NAME | ||
ARG CONTAINER_OS_TYPE | ||
|
||
WORKDIR /agent | ||
COPY ./build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} /agent/build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} | ||
COPY ./ /agent | ||
|
||
RUN apt-get update \ | ||
&& apt install --no-install-recommends --no-install-suggests -y /agent/build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} \ | ||
&& rm /agent/build/${PACKAGE_NAME}.${CONTAINER_OS_TYPE} | ||
|
||
RUN unlink /var/log/nginx/access.log | ||
RUN unlink /var/log/nginx/error.log | ||
|
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.