37 lines
1.5 KiB
Docker
37 lines
1.5 KiB
Docker
# Copyright 2019 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Pin to a specific version of invert proxy agent
|
|
FROM gcr.io/inverting-proxy/agent@sha256:d0a06a247bb443f9528356a1341cadfa4c4479a034097ef9ed8cf200c6383ec0
|
|
|
|
RUN apt-get update && apt-get install -y curl jq python-pip
|
|
RUN pip install requests
|
|
RUN curl https://raw.githubusercontent.com/requests/requests/master/LICENSE --output /opt/license.txt
|
|
|
|
# Install gcloud SDK
|
|
RUN curl https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz > /tmp/google-cloud-sdk.tar.gz
|
|
RUN mkdir -p /usr/local/gcloud
|
|
RUN tar -C /usr/local/gcloud -xf /tmp/google-cloud-sdk.tar.gz
|
|
RUN /usr/local/gcloud/google-cloud-sdk/install.sh
|
|
ENV PATH $PATH:/usr/local/gcloud/google-cloud-sdk/bin
|
|
|
|
# Install kubectl
|
|
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
|
|
RUN chmod +x ./kubectl
|
|
RUN mv kubectl /usr/local/bin/
|
|
|
|
ADD ./ /opt/proxy
|
|
|
|
CMD ["/bin/sh", "-c", "/opt/proxy/attempt-register-vm-on-proxy.sh"]
|