Skip to content
Open
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
6 changes: 3 additions & 3 deletions dockerize/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN $SCRIPT/install-ocaml.sh
# Setup checkml
WORKDIR /
USER root
RUN git clone https://github.com/prosyslab-classroom/checkml.git
RUN git clone https://github.com/prosyslab-classroom/checkml.git
RUN cd checkml && ./build.sh
RUN cp /checkml/_build/default/src/checkml.exe /usr/bin/checkml

Expand All @@ -50,7 +50,7 @@ RUN echo "export PATH=/dafny:\$PATH" >> /home/student/.bashrc

# Install huggingface
RUN pip3 install -U "huggingface_hub[cli]"
RUN echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> /home/student/.bashrc
RUN echo "export PATH=$HOME/.local/bin:\$PATH" >> /home/student/.bashrc

# Setup BitNet
RUN git clone --recursive https://github.com/prosyslab-classroom/BitNet
Expand All @@ -64,4 +64,4 @@ RUN ln -s /BitNet/run_inference.sh /usr/local/bin/run_inference
# Clean up
RUN rm -rf $SCRIPT
USER student
WORKDIR $HOME
WORKDIR $HOME