Skip to content

Commit

Permalink
changes to docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-Manoj committed Jul 26, 2024
1 parent d468557 commit 9486e4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ COPY ./src /src
# Install the Whiteboxgis toolbox here
RUN curl https://www.whiteboxgeo.com/WBT_Linux/WhiteboxTools_linux_amd64.zip -o /src/wbt.zip
WORKDIR /src
RUN unzip wbt.zip
RUN rm wbt.zip
RUN unzip wbt.zip && \
rm wbt.zip && \
mv WhiteboxTools_linux_amd64/WBT/ /src/WBT && \
rm -rf WhiteboxTools_linux_amd64


CMD ["python", "run.py"]
Binary file modified in/Thumbs.db
Binary file not shown.
2 changes: 0 additions & 2 deletions src/tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ tools:
whitebox_info:
title: WhiteboxGIS version info
description: Return the output of WhiteboxGIS version information
version: 0.1
parameters:
toFile:
type: bool
Expand All @@ -11,7 +10,6 @@ tools:
hillslope_generator:
title: CATFLOW Hillslope Generator
description: Produces the required Raster (.TIFF) files for running the CATFLOW Hillslope Wizard Tool using [Whitebox GIS](https://www.whiteboxgeo.com/)
version: 0.1
parameters:
stream_threshold:
type: float
Expand Down

0 comments on commit 9486e4e

Please sign in to comment.