|
@@ -1,15 +1,33 @@
|
|
|
-FROM python:3.7
|
|
|
-MAINTAINER Michael B. Klein <michael.klein@northwestern.edu>
|
|
|
-RUN mkdir -p /usr/local /data
|
|
|
-WORKDIR /usr/local
|
|
|
-ADD . lakesuperior
|
|
|
-WORKDIR /usr/local/lakesuperior
|
|
|
-RUN git submodule update --init
|
|
|
-RUN [[ -f lakesuperior/model/base.c ]] || \
|
|
|
- pip install -r requirements_dev.txt
|
|
|
+FROM python:3.7-alpine
|
|
|
+LABEL "maintainer"="Michael B. Klein <michael.klein@northwestern.edu>" \
|
|
|
+ "maintainer"="Stefano Cossu <scossu@getty.edu>"
|
|
|
+
|
|
|
+RUN apk add --no-cache build-base git
|
|
|
+RUN pip3 install cython==0.29.6 cymem
|
|
|
+
|
|
|
+RUN mkdir -p /data
|
|
|
+WORKDIR /usr/local/lsup/src
|
|
|
+COPY .git ./.git
|
|
|
+COPY ext ./ext
|
|
|
+COPY bin ./bin
|
|
|
+COPY lakesuperior ./lakesuperior
|
|
|
+COPY setup.py README.rst ./
|
|
|
+
|
|
|
+RUN git submodule update --init ext
|
|
|
RUN pip install -e .
|
|
|
-RUN cp ./docker/etc/* ./lakesuperior/etc.defaults/
|
|
|
-CMD ./docker/docker_entrypoint
|
|
|
+COPY ./docker/etc ./lakesuperior/etc.defaults
|
|
|
+
|
|
|
+
|
|
|
+RUN apk del build-base git
|
|
|
+RUN rm -rf .git
|
|
|
+
|
|
|
+RUN [ -f /data/ldprs_store/data.mdb ] || \
|
|
|
+ echo yes | lsup-admin bootstrap
|
|
|
+
|
|
|
+VOLUME /data
|
|
|
+
|
|
|
EXPOSE 8000
|
|
|
-HEALTHCHECK --interval=30s --timeout=5s \
|
|
|
- CMD curl -X OPTIONS -f http://localhost:8000/ || exit 1
|
|
|
+
|
|
|
+ENTRYPOINT ["gunicorn", "-c", "python:lakesuperior.wsgi", \
|
|
|
+ "lakesuperior.server:fcrepo"]
|
|
|
+
|