Skip to content

Commit

Permalink
Fixing download/install of EOxServer
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius committed Nov 3, 2023
1 parent 47bc157 commit d72f61a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,16 @@ LABEL name="EOEPCA data access core" \
version="1.4-dev1"

RUN pip3 install PyYAML "SQLAlchemy<2.0.0" OWSLib pygeometa pystac_client && \
pip3 install https://github.com/geopython/pycsw/archive/master.zip && \
pip3 install https://github.com/eoxserver/eoxserver/archive/master.zip
pip3 install https://github.com/geopython/pycsw/archive/master.zip

RUN apt-get update \
&& apt-get install -y wget \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/partial/* /tmp/* /var/tmp/*

RUN wget https://github.com/eoxserver/eoxserver/archive/master.tar.gz && \
tar -C /opt/eoxserver/ --strip-components=1 -xvf master.tar.gz eoxserver-master/

RUN mkdir /registrar_pycsw
ADD registrar_pycsw/ \
Expand Down

0 comments on commit d72f61a

Please sign in to comment.