Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Update Dockerfile #900

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 2 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
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ USER root
RUN pip install -I --no-cache-dir \
matplotlib \
numpy \
pytest && \
pytest \
traitlets==5.9.0 \
qsharp-jupyterlab && \
# Give permissions to the jovyan user
chown -R ${USER} ${HOME} && \
chmod +x ${HOME}/scripts/*.sh
Expand Down Expand Up @@ -85,6 +87,11 @@ RUN cd ${HOME}/ && \
</configuration>\
" > ${HOME}/.nuget/NuGet/NuGet.Config

# Install other tutorial-specific packages
RUN dotnet iqsharp install --user
RUN cd ${HOME}/QuantumKatas/tutorials/QuantumClassification/ && \
rohithreddykota marked this conversation as resolved.
Show resolved Hide resolved
dotnet add package Microsoft.Quantum.MachineLearning --version 0.28.302812

# Set the working directory to $HOME (/home/jovyan/)
WORKDIR ${HOME}

Expand Down