Skip to content

Commit

Permalink
feat: add support for proxy settings during docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhodgkiss committed Dec 27, 2023
1 parent 52b5cfa commit 3b0a92f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docker/kayobe/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ ARG BASE_IMAGE="quay.io/centos/centos:stream8"
FROM ${BASE_IMAGE}
MAINTAINER "Will Szumski" <[email protected]>

ARG http_proxy
ARG https_proxy
ENV http_proxy $http_proxy
ENV https_proxy $https_proxy

# Unclear at this time if different environments will change
# control host bootstrap.
ARG KAYOBE_ENVIRONMENT=""
Expand Down

0 comments on commit 3b0a92f

Please sign in to comment.