Skip to content

Commit

Permalink
added results directory to genie dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenaH84 committed Apr 8, 2024
1 parent 4bd9ac1 commit 4aa3d7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
volumes:
- ./genie:/home/genie/app
#command: gunicorn -w 1 -b 0.0.0.0:8000 wsgi:server --timeout 200
command: julia --project=. -e 'include("/home/genie/app/app/rest.jl")' --color=yes --depwarn=no --project=@. --sysimage="/home/sysimage.so" -q -i -- $$(dirname $$0)/../bootstrap.jl -s=true "$$@"
command: julia --project=. -e 'include(\"app/rest.jl\")' --color=yes --depwarn=no --project=@. --sysimage="/home/sysimage.so" -q -i -- $$(dirname $$0)/../bootstrap.jl -s=true "$$@"
# --color=yes --depwarn=no --project=@. --sysimage=/usr/local/julia/lib/julia/sys.so -q -i -- $(dirname $0)/../bootstrap.jl -s=true "$@"

nginx:
Expand Down
5 changes: 3 additions & 2 deletions genie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ ENV JULIA_DEPOT_PATH "/home/genie/.julia"
ENV JULIA_REVISE="off"
ENV EARLYBIND "true"

COPY --chown=genie:genie app /home/genie/app
COPY --chown=genie:genie bin /home/genie/app
COPY --chown=genie:genie app /home/genie/app/app
COPY --chown=genie:genie bin /home/genie/app/bin
COPY --chown=genie:genie results /home/genie/app/results


# Copy compiled files
Expand Down

0 comments on commit 4aa3d7c

Please sign in to comment.