16 lines
285 B
Plaintext
16 lines
285 B
Plaintext
FROM icr.io/quantum-public/qiskit-serverless/ray-node:latest
|
|
|
|
# install all necessary dependencies for your custom image
|
|
|
|
# copy our function implementation in `/runner.py` of the docker image
|
|
USER 0
|
|
RUN mkdir /runner
|
|
WORKDIR /runner
|
|
COPY function/runner.py .
|
|
WORKDIR /
|
|
|
|
USER 1000
|
|
|
|
|
|
|