-
Andrew Kapuscinski authored
updated coveragerc config files to reflect changes to the shared packages location and modified run-tests.sh
Andrew Kapuscinski authoredupdated coveragerc config files to reflect changes to the shared packages location and modified run-tests.sh
Dockerfile.local 467 B
# This is nrao:workflow
FROM marconi.aoc.nrao.edu/ops/base:workspaces
# Get workflow code into the image
WORKDIR /code
COPY ./services/workflow ./
WORKDIR /packages/
COPY ./shared ./shared
COPY ./apps/cli ./apps/cli
COPY ./testing ./testing
# Python library installation
WORKDIR /code/
RUN pip install -r requirements.txt \
&& python setup.py develop
# Set Capo
ARG capo_env=docker
ENV CAPO_PROFILE $capo_env
CMD ["pserve", "--reload", "development.ini"]