aboutsummaryrefslogblamecommitdiff
blob: 985f5275f24a5f9c175490f9f0bf21edceb40413 (plain) (tree)
1
2
3
4
5
6
7
8
                            
 
                                          
 
                          
 
                                           
 













                                                              
FROM python:3.6.0 as builder

LABEL maintainer=clarkzjw<[email protected]>

RUN pip install virtualenv

COPY requirements.txt /app/requirements.txt

COPY bootstrap.py /app/bootstrap.py

RUN /app/bootstrap.py

ADD . /app

WORKDIR /app

RUN /bin/bash -c "source /app/.venv/bin/activate && make html"


FROM nginx:alpine

COPY --from=builder /app/_build/html /usr/share/nginx/html
Powered by cgit v1.2.3 (git 2.41.0)