Merge pull request #1150 from tariq1890/upd_docker

update versions and remove unnecessary files in Dockerfile
This commit is contained in:
Kubernetes Prow Robot 2019-08-20 07:12:54 -07:00 committed by GitHub
commit 06052acfc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -13,10 +13,10 @@
# limitations under the License.
# builder image
FROM golang:1.12.8 as builder
FROM golang:1.12.9 as builder
WORKDIR /github.com/kubernetes-incubator/external-dns
RUN apt-get update && apt-get install -y bzr
COPY . .
RUN go mod vendor && \
make test && \

View File

@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM golang:1.12.7 as builder
FROM golang:1.12.9 as builder
WORKDIR /github.com/kubernetes-incubator/external-dns
RUN apt-get update && apt-get install -y bzr
COPY . .
RUN apt-get update && \
apt-get install ca-certificates && \