Skip to content

Commit

Permalink
Added missing package ghc
Browse files Browse the repository at this point in the history
  • Loading branch information
JianyiCheng committed Jul 3, 2023
1 parent c8b7edd commit 17d46d2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ RUN useradd -r -g $GID -u $UID -m -d /home/dev-user -s /sbin/nologin -c "User" d
RUN echo "dev-user ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
USER dev-user

# Install PyTorch and Torch-MLIR
# Install Python packages
ENV PATH="${PATH}:/home/dev-user/.local/bin"
RUN pip3 install --user --upgrade pip
RUN pip3 install black colorlog toml tabulate isort
RUN pip3 install --user --upgrade pip \
&& pip3 install black colorlog toml tabulate isort
# Install GHC
RUN curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh

# Add environment variables
RUN printf "\
Expand Down

0 comments on commit 17d46d2

Please sign in to comment.