From d6c175a3cc1aac44de9db45b2185c4bf7fb7009d Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 13 Jul 2023 15:29:00 -0400 Subject: [PATCH] Remove private mirror from dockerfiles. I now have a pull-through cache set up with kaniko, so I no longer need this hard-coded path. Removing the private mirror from the dockerfiles makes them more portable. --- docker/cargo_fmt/Dockerfile | 2 +- docker/organic_test/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/cargo_fmt/Dockerfile b/docker/cargo_fmt/Dockerfile index f58efd91..b06635cf 100644 --- a/docker/cargo_fmt/Dockerfile +++ b/docker/cargo_fmt/Dockerfile @@ -1,4 +1,4 @@ -FROM harbor.fizz.buzz/dockerhub/library/rust:1.70.0 +FROM rustlang/rust:nightly-alpine3.17 RUN rustup component add rustfmt diff --git a/docker/organic_test/Dockerfile b/docker/organic_test/Dockerfile index be46c1b4..69010955 100644 --- a/docker/organic_test/Dockerfile +++ b/docker/organic_test/Dockerfile @@ -1,3 +1,3 @@ -FROM harbor.fizz.buzz/dockerhub/rustlang/rust:nightly-alpine3.17 +FROM rustlang/rust:nightly-alpine3.17 RUN apk add --no-cache musl-dev emacs