mirror of
https://github.com/ivan-usov-org/bec.git
synced 2025-04-21 18:20:01 +02:00
15 lines
379 B
Docker
15 lines
379 B
Docker
# 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 opaas directory to the working directory
|
|
COPY . ./bec
|
|
|
|
WORKDIR /code/bec/scan_server
|
|
RUN pip install -e .
|
|
|
|
# command to run on container start
|
|
CMD [ "python", "launch.py", "--config", "/code/bec/ci/test_config.yaml"]
|