Last active
September 9, 2019 00:49
-
-
Save cgranade/df78c32014986d77b054abf33c45b9d6 to your computer and use it in GitHub Desktop.
Supplementary material for "This is not a qubit."
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@sha256:85dfe751b8f63dee15ffc51358ad5c61cbfc3e09cab21b3971cfd1e6d16f4cdc | |
ENV IQSHARP_HOSTING_ENV="cgranade-blog/this-is-not-a-qubit" | |
# 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