From 14b0b9788c99dd3f7aad68be0bc1c378c11b376c Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Wed, 24 Oct 2018 15:27:47 +0100 Subject: [PATCH] Delete dockerfiles directory Signed-off-by: James Munnelly --- hack/build/dockerfiles/acmesolver/Dockerfile | 27 ------------------ hack/build/dockerfiles/controller/Dockerfile | 28 ------------------- .../build/dockerfiles/ingress-shim/Dockerfile | 28 ------------------- hack/build/dockerfiles/webhook/Dockerfile | 24 ---------------- 4 files changed, 107 deletions(-) delete mode 100644 hack/build/dockerfiles/acmesolver/Dockerfile delete mode 100644 hack/build/dockerfiles/controller/Dockerfile delete mode 100644 hack/build/dockerfiles/ingress-shim/Dockerfile delete mode 100644 hack/build/dockerfiles/webhook/Dockerfile diff --git a/hack/build/dockerfiles/acmesolver/Dockerfile b/hack/build/dockerfiles/acmesolver/Dockerfile deleted file mode 100644 index c7ab969a2..000000000 --- a/hack/build/dockerfiles/acmesolver/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 2018 The Jetstack cert-manager contributors. -# -# 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. - -FROM alpine:3.6 - -RUN apk add --no-cache ca-certificates && \ - adduser -S -u 100 acmesolver - -ADD cert-manager-acmesolver_linux_amd64 /usr/bin/acmesolver - -USER 100 -ENTRYPOINT ["/usr/bin/acmesolver"] -ARG VCS_REF -LABEL org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \ - org.label-schema.license="Apache-2.0" diff --git a/hack/build/dockerfiles/controller/Dockerfile b/hack/build/dockerfiles/controller/Dockerfile deleted file mode 100644 index b52a95b16..000000000 --- a/hack/build/dockerfiles/controller/Dockerfile +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2018 The Jetstack cert-manager contributors. -# -# 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. - -FROM alpine:3.6 - -RUN apk add --no-cache ca-certificates && \ - addgroup -S certmanager && adduser -S -G certmanager certmanager - -ADD cert-manager-controller_linux_amd64 /usr/bin/cert-manager - -USER certmanager - -ENTRYPOINT ["/usr/bin/cert-manager"] -ARG VCS_REF -LABEL org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \ - org.label-schema.license="Apache-2.0" diff --git a/hack/build/dockerfiles/ingress-shim/Dockerfile b/hack/build/dockerfiles/ingress-shim/Dockerfile deleted file mode 100644 index 24ae232f6..000000000 --- a/hack/build/dockerfiles/ingress-shim/Dockerfile +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2018 The Jetstack cert-manager contributors. -# -# 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. - -FROM alpine:3.6 - -RUN apk add --no-cache ca-certificates && \ - addgroup -S certmanager && adduser -S -G certmanager certmanager - -ADD cert-manager-ingress-shim_linux_amd64 /usr/bin/ingress-shim - -USER certmanager - -ENTRYPOINT ["/usr/bin/ingress-shim"] -ARG VCS_REF -LABEL org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \ - org.label-schema.license="Apache-2.0" diff --git a/hack/build/dockerfiles/webhook/Dockerfile b/hack/build/dockerfiles/webhook/Dockerfile deleted file mode 100644 index 566560a05..000000000 --- a/hack/build/dockerfiles/webhook/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 2018 The Jetstack cert-manager contributors. -# -# 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. - -FROM alpine:3.6 - -RUN apk add --no-cache ca-certificates -ADD cert-manager-webhook_linux_amd64 /usr/bin/webhook - -ENTRYPOINT ["/usr/bin/webhook"] -ARG VCS_REF -LABEL org.label-schema.vcs-ref=$VCS_REF \ - org.label-schema.vcs-url="https://github.com/jetstack/cert-manager" \ - org.label-schema.license="Apache-2.0"