Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daycli fix #73

Merged
merged 9 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ RUN mkdir -p /data && \
# install csv2bufr templates
RUN mkdir /opt/csv2bufr && \
cd /opt/csv2bufr && \
wget https://github.com/wmo-im/csv2bufr-templates/archive/refs/tags/v0.2.tar.gz && \
tar -zxf v0.2.tar.gz --strip-components=1 csv2bufr-templates-0.2/templates
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
Expand Down
2 changes: 1 addition & 1 deletion docker_compose_test/tests/integration/test_wis2box.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,4 @@ def test_cap2geojson():

assert 'items' in output
assert len(output['items']) == 1
assert output['items'][0] == cap_geojson
assert output['items'][0]['features'][0]['properties'] == cap_geojson['features'][0]['properties'] # noqa
Loading