Skip to content

Commit

Permalink
combine run steps
Browse files Browse the repository at this point in the history
  • Loading branch information
JoostBuitink committed Nov 14, 2024
1 parent 810e4b4 commit 8490472
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
ADD . /app
WORKDIR /app/build/create_binaries/
RUN julia --project -e "using Pkg; Pkg.instantiate()"
RUN julia --project download_test_data.jl
RUN julia --project create_app.jl
RUN rm -rf /app/test/data/*
RUN julia --project -e "using Pkg; Pkg.instantiate();" && \
julia --project download_test_data.jl && \
julia --project create_app.jl && \
rm -rf /app/test/data/*

ENTRYPOINT [ "/app/build/create_binaries/wflow_bundle/bin/wflow_cli" ]

0 comments on commit 8490472

Please sign in to comment.