Skip to content
Snippets Groups Projects
Dockerfile.dev 381 B
Newer Older
# This is nrao:workflow
FROM marconi.aoc.nrao.edu/ops/base:workspaces

# Get workflow code into the image
WORKDIR /code
COPY ./services/workflow ./

# Python library installation
RUN pip install -r requirements.txt \
    && python setup.py develop

# Set Capo 
ENV CAPO_PROFILE dsoc-dev

ENTRYPOINT pserve --reload development.ini