-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
73 lines (59 loc) · 2.92 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
###############################################################################
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
###############################################################################
FROM wmoim/dim_eccodes_baseimage:jammy-2.36.0
ENV PYGEOAPI_CONFIG=/data/wis2box/config/pygeoapi/local.config.yml
ENV PYGEOAPI_OPENAPI=/data/wis2box/config/pygeoapi/local.openapi.yml
ENV CSV2BUFR_TEMPLATES=/root
WORKDIR /root
RUN apt-get update -y && apt-get install cron curl python3-pip git unzip -y
# install gunicorn, gevent, gdal, elasticsearch
RUN apt-get install -y --no-install-recommends \
libgdal-dev gunicorn python3-gevent python3-gdal python3-elasticsearch libudunits2-dev dos2unix wget \
&& rm -rf /var/lib/apt/lists/*
# install pygeoapi, pywcmp, bufr2geojson
RUN pip3 install --no-cache-dir git+https://github.com/geopython/pygeoapi.git@17080d88b0cc10bc8114d7373a43326da4cea163 \
&& pip3 install --no-cache-dir \
https://github.com/wmo-im/pywis-topics/archive/refs/tags/0.3.2.zip \
https://github.com/wmo-im/pywcmp/archive/refs/tags/0.8.5.zip \
https://github.com/wmo-im/bufr2geojson/archive/refs/tags/v0.6.0.zip \
https://github.com/wmo-cop/pyoscar/archive/refs/tags/0.7.0.zip
RUN pywcmp bundle sync
RUN mkdir -p /data && \
cd /data && \
curl -f -L -o /data/wmo-ra.geojson https://raw.githubusercontent.com/OGCMetOceanDWG/wmo-ra/master/wmo-ra.geojson
# install csv2bufr templates
RUN mkdir /opt/csv2bufr && \
cd /opt/csv2bufr && \
wget https://github.com/wmo-im/csv2bufr-templates/archive/main.tar.gz && \
tar -zxf main.tar.gz --strip-components=1 csv2bufr-templates-main/templates
# install wis2box-api
COPY . /app
COPY wis2box_api/templates/admin /pygeoapi/pygeoapi/templates/admin
COPY ./docker/pygeoapi-config.yml $PYGEOAPI_CONFIG
#COPY ./docker/pygeoapi-openapi.yml $PYGEOAPI_OPENAPI
RUN cd /app \
&& pip3 install -e . \
&& chmod +x /app/docker/es-entrypoint.sh /app/docker/wait-for-elasticsearch.sh
# add wis2box.cron to crontab
COPY ./docker/wis2box-api.cron /etc/cron.d/wis2box-api.cron
RUN chmod 0644 /etc/cron.d/wis2box-api.cron && crontab /etc/cron.d/wis2box-api.cron
ENTRYPOINT [ "/app/docker/es-entrypoint.sh" ]
#ENTRYPOINT [ "/bin/bash" ]