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

RUN pip --version
# Get workflow code into the image
WORKDIR /code
COPY ./services/notification ./
COPY ./shared ./src/shared
COPY ./apps/cli ./src/apps/cli
COPY ./testing ./src/testing

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

# Set Capo 
ARG capo_env=dev
ENV CAPO_PROFILE $capo_env

CMD ["pserve", "--reload", "development.ini"]