Skip to content
Snippets Groups Projects
Commit 2b6649df authored by Andrew Kapuscinski's avatar Andrew Kapuscinski
Browse files

added dev dockerfiles and docker-compose file

parent 117db3bf
No related branches found
No related tags found
No related merge requests found
version: '3.8'
services:
# schema:
# image: marconi.aoc.nrao.edu/ops/base:workspaces
# depends_on:
# - db
# volumes:
# - ./schema:/code/schema
workflow:
image: marconi.aoc.nrao.edu/workspaces/workflow:dev
ports:
- "3456:3456"
capability:
image: marconi.aoc.nrao.edu/workspaces/capability:dev
ports:
- "3457:3457"
# This is nrao:capability
FROM marconi.aoc.nrao.edu/ops/base:workspaces
# Get capability code into the image
WORKDIR /code
COPY ./services/capability ./
COPY ./shared ./shared
COPY ./apps ./apps
# 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
# This is nrao:workflow
FROM marconi.aoc.nrao.edu/ops/base:workspaces
# Get workflow code into the image
WORKDIR /code
COPY ./services/workflow ./
COPY ./shared ./shared
COPY ./apps ./apps
# 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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment