bec/scan_server/Dockerfile
2022-07-05 09:53:31 +00:00

15 lines
350 B
Docker

# set base image (host OS)
FROM 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/test_config.yaml"]