-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move transform into api, publish data from message * as_string and _meta * fix as_string for bytes * as_string base64_encode=True * minor updates plus function execute_api_process using async * access jobs-url from within docker-stack by replacing url ! * fix job-location url * fix conversion via API * update template name for campbell csv2bufr * back to wis2box-api:latest * remove data-mappings.yml * corrections following Tom's review * add warnings to Grafana dashboard * fix MessageData-plugin * add test counter * reduce count congo in test * update -another- count in test * add requested changes * add doc-string for as_bytes and as_string
- Loading branch information
1 parent
9c47bb3
commit b161192
Showing
15 changed files
with
466 additions
and
486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,14 @@ | |
# | ||
############################################################################### | ||
|
||
FROM ghcr.io/wmo-im/dim_eccodes_baseimage:latest | ||
FROM ubuntu:focal | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL maintainer="[email protected]; [email protected]" | ||
|
||
ARG WIS2BOX_PIP3_EXTRA_PACKAGES | ||
ENV TZ="Etc/UTC" \ | ||
DEBIAN_FRONTEND="noninteractive" \ | ||
DEBIAN_PACKAGES="cron bash vim curl git libffi-dev python3-cryptography libssl-dev libudunits2-0 python3-paho-mqtt python3-dateparser python3-tz python3-setuptools unzip" | ||
DEBIAN_PACKAGES="cron bash vim curl git libffi-dev python3-cryptography libssl-dev libudunits2-0 python3 python3-pip curl python3-paho-mqtt python3-dateparser python3-tz python3-setuptools unzip" | ||
|
||
RUN if [ "$WIS2BOX_PIP3_EXTRA_PACKAGES" = "None" ]; \ | ||
then export WIS2BOX_PIP3_EXTRA_PACKAGES=echo; \ | ||
|
@@ -39,11 +39,7 @@ RUN if [ "$WIS2BOX_PIP3_EXTRA_PACKAGES" = "None" ]; \ | |
RUN apt-get update -y && apt-get install -y ${DEBIAN_PACKAGES} \ | ||
# install wis2box data pipeline dependencies | ||
&& pip3 install --no-cache-dir \ | ||
https://github.com/wmo-im/csv2bufr/archive/refs/tags/v0.7.4.zip \ | ||
https://github.com/wmo-im/bufr2geojson/archive/refs/tags/v0.5.1.zip \ | ||
https://github.com/wmo-im/pymetdecoder/archive/refs/tags/v0.1.10.zip \ | ||
https://github.com/wmo-cop/pyoscar/archive/master.zip \ | ||
https://github.com/wmo-im/synop2bufr/archive/refs/tags/v0.6.2.zip \ | ||
https://github.com/wmo-cop/pyoscar/archive/refs/tags/0.6.4.zip \ | ||
https://github.com/geopython/pygeometa/archive/master.zip \ | ||
https://github.com/wmo-im/pywis-topics/archive/refs/tags/0.2.0.zip \ | ||
# install shapely | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.