Skip to content
Snippets Groups Projects
Dockerfile 466 B
Newer Older
ARG TAG=latest
FROM lofar-maintenance-restservice:${TAG} as django_staticfiles_source

RUN source /opt/lofar/lofarinit.sh && \
    mkdir -p /opt/lofar/share/www/static && \
    cd /opt/lofar/share/www/static && \
    python3 /opt/lofar/lib64/python3.6/site-packages/lofar/maintenance/manage.py collectstatic --noinput

FROM nginx:1.16.0
COPY --from=django_staticfiles_source /opt/lofar/share/www/ /opt/lofar/share/www/
COPY nginx.conf /etc/nginx/conf.d/default.conf