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
4 changes: 2 additions & 2 deletions Dockerfile-debian
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ RUN echo " ... adding jq" \
&& chmod 755 ${_prefix}/bin/jq \
&& rm -rf /var/cache/apk/*

ENV REQUEST_VALIDATION_VERSION=1.3.22
ENV REQUEST_VALIDATION_VERSION=1.4.0
RUN echo " ... installing api-gateway-request-validation ..." \
&& mkdir -p /tmp/api-gateway \
&& curl -Lk https://github.com/adobe-apiplatform/api-gateway-request-validation/archive/${REQUEST_VALIDATION_VERSION}.tar.gz -o /tmp/api-gateway/api-gateway-request-validation-${REQUEST_VALIDATION_VERSION}.tar.gz \
Expand Down Expand Up @@ -312,7 +312,7 @@ RUN groupadd --gid 1000 nginx-api-gateway \
RUN mkdir -p /usr/local/api-gateway \
&& chown -R nginx-api-gateway:nginx-api-gateway /etc/init-container.sh /etc/api-gateway /var/log/api-gateway /usr/local \
&& chmod 755 -R /etc/api-gateway /var/log/api-gateway /usr/local \
&& echo "nginx-api-gateway ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
&& echo "nginx-api-gateway ALL=(ALL) NOPASSWD:SETENV: ALL" >> /etc/sudoers

RUN apt-get update && apt-get install -y inotify-tools

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ DOCKER_TAG ?= snapshot-`date +'%Y%m%d-%H%M'`
DOCKER_REGISTRY ?= 'docker.io'
BASE_REGISTRY ?= 'docker.io'
IMAGE_NAME ?= 'adobeapiplatform/apigateway'
CONFIG_SUPERVISOR_VERSION ?= '1.0.3'
CONFIG_SUPERVISOR_VERSION ?= '1.0.4'

docker:
docker build --build-arg BASE_REGISTRY=${BASE_REGISTRY} --build-arg CONFIG_SUPERVISOR_VERSION=${CONFIG_SUPERVISOR_VERSION} -t ${IMAGE_NAME} .
Expand Down