Last active
August 14, 2019 17:21
-
-
Save cgranade/e4a837dcb37a4e60f8e971cf1372a2ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start from the IQ# base image. The definition for this image can be found at | |
# https://github.com/microsoft/iqsharp/blob/master/images/iqsharp-base/Dockerfile. | |
FROM mcr.microsoft.com/quantum/iqsharp-base:0.8.1907.1701 | |
ENV IQSHARP_HOSTING_ENV=quantumcomputing-7012 | |
# Make sure the contents of our repo are in ${HOME}. | |
# These steps are required for use on mybinder.org. | |
USER root | |
COPY . ${HOME} | |
RUN chown -R ${USER} ${HOME} | |
# Finish by dropping back to the notebook user. | |
USER ${USER} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment