-
Clone this gist using the URL from the address bar
-
Run
terraform init
-
Configure terraform variables as needed by updating the
main.tfvars
file:| Variable | Description | Default | | ------------ | ------------------- | --------------- |
This file contains hidden or 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
FROM nginx:1.14.2 AS builder | |
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
ENV NGINX_VERSION 1.14.2 | |
ENV VTS_VERSION 0.1.18 | |
COPY ./badproxy /etc/apt/apt.conf.d/99fixbadproxy | |
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \ |