mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 18:20:01 +02:00
17 lines
552 B
Plaintext
17 lines
552 B
Plaintext
# set base image (host OS)
|
|
FROM morgana-harbor.psi.ch/bec/python:3.8
|
|
|
|
# set the working directory in the container
|
|
WORKDIR /code
|
|
|
|
# copy the content of the local directory to the working directory
|
|
COPY ./bec_lib ./bec/bec_lib
|
|
COPY ./scibec/init_scibec/demo_config.yaml ./bec/bec_lib/demo_config.yaml
|
|
COPY ./semantic_release ./bec/semantic_release
|
|
|
|
RUN pip install -e ./bec/bec_lib
|
|
WORKDIR /code/bec/
|
|
|
|
# command to run on container start
|
|
CMD [ "python", "/code/bec/bec_lib/util_scripts/init_config.py", "--config", "/code/bec/bec_lib/demo_config.yaml"]
|