Skip to content

Commit

Permalink
Fix a broken URL in contributing.md (#538)
Browse files Browse the repository at this point in the history
Fixed the url in contributing.md with working one.

Co-authored-by: justheuristic <[email protected]>
  • Loading branch information
Vahe1994 and justheuristic authored Dec 26, 2022
1 parent e98c24a commit e584bb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ RUN echo "LC_ALL=en_US.UTF-8" >> /etc/environment
# Install packages
RUN apt-get update && apt-get install -y --no-install-recommends --force-yes \
build-essential \
curl \
wget \
git \
vim \
&& apt-get clean autoclean && rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/*

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O install_miniconda.sh && \
bash install_miniconda.sh -b -p /opt/conda && rm install_miniconda.sh
ENV PATH="/opt/conda/bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion docs/user/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This section describes the ways to contribute to the hivemind library. For technical details of developing this library
and getting towards merging your code in the master branch, read
the [guidelines](https://github.com/learning-at-home/hivemind/blob/master/CONTRIBUTING.md) in our GitHub repository. In
the [guidelines](https://github.com/learning-at-home/hivemind/blob/master/CONTRIBUTING.md#) in our GitHub repository. In
any case, please follow the [Contributor Covenant](https://www.contributor-covenant.org/version/2/0/code_of_conduct/)
code of conduct when discussing the library and the changes with other community members.

Expand Down

0 comments on commit e584bb5

Please sign in to comment.