Unverified Commit 28a8cb0b authored by Tamika Tannis's avatar Tamika Tannis Committed by GitHub

Add a dockerfile for local workflow in umbrella repo (#246)

parent b0ff41df
ARG METADATASERVICE_BASE
ARG SEARCHSERVICE_BASE
FROM node:8 as node-stage
COPY . /app
WORKDIR /app/amundsen_application/static
RUN npm install
RUN npm rebuild node-sass
RUN npm run dev-build
FROM python:3
COPY --from=node-stage /app /app
WORKDIR /app
RUN pip3 install -r requirements3.txt
RUN python3 setup.py install
ENTRYPOINT [ "python3" ]
CMD [ "amundsen_application/wsgi.py" ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment