quantum-serverless/docs/deployment/custom_function/Sample-Dockerfile

13 lines
263 B
Plaintext

FROM icr.io/quantum-public/qiskit-serverless/ray-node:0.19.0
# install all necessary dependencies for your custom image
# copy our function implementation in `/runner.py` of the docker image
USER 0
WORKDIR /runner
COPY ./runner.py /runner
WORKDIR /
USER 1000