Skip to content
Merged
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
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ FROM julia:1.12.6
LABEL maintainer="Maarten Pronk <maarten.pronk@deltares.nl>"

RUN apt-get update && apt-get install -y \
g++ git gcc \
&& rm -rf /var/lib/apt/lists/*
g++ git gcc && \
rm -rf /var/lib/apt/lists/*
ADD . /app
WORKDIR /app/build/create_binaries/
RUN julia --project -e "using Pkg; Pkg.instantiate();" && \
julia --project download_test_data.jl && \
RUN julia --project=/app/Wflow -e "using Pkg; Pkg.instantiate();" && \
julia --project=/app/Wflow /app/utils/download_test_data.jl && \
julia --project -e "using Pkg; Pkg.instantiate()" && \
julia --project create_app.jl && \
rm -rf /app/test/data/*

Expand Down
Loading