Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

Disable resolver in dockerfile for consistent builds #2090

Merged
merged 1 commit into from
Oct 22, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ COPY . /usr/src/app
RUN apt-get update
RUN apt-get -y install libsnappy-dev

RUN pip install -e .[dev] --no-cache-dir --use-feature=2020-resolver
RUN pip install -U trinity --no-cache-dir --use-feature=2020-resolver
RUN pip install -e .[dev] --no-cache-dir
RUN pip install -U trinity --no-cache-dir

RUN echo "Type \`trinity\` to boot or \`trinity --help\` for an overview of commands"

Expand Down