diff --git a/Dockerfile b/Dockerfile index 91def80..74d9d0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,9 +44,6 @@ RUN apk --no-cache add \ python3-dev=3.11.8-r0 \ python3=3.11.8-r0 -# Copy in our custom Cargo configuration file -COPY src/config.toml /root/.cargo/ - # Install pipenv to manage installing the Python dependencies into a created # Python virtual environment. This is done separately from the virtual # environment so that pipenv and its dependencies are not installed in the diff --git a/src/config.toml b/src/config.toml deleted file mode 100644 index d46bea6..0000000 --- a/src/config.toml +++ /dev/null @@ -1,7 +0,0 @@ -[net] -# Configure Cargo to use the git CLI instead of the libgit2 library. There is -# an issue with 32-bit (non-x86) platforms when libgit2 tries to pull down the -# Cargo package index from GitHub. This *might* get fixed in a later version -# of Cargo so it is being tracked in: -# https://github.com/cisagov/code-gov-update/issues/32 -git-fetch-with-cli = true