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

use docker image for dependencies #156

Open
zeratax opened this issue Apr 7, 2020 · 0 comments
Open

use docker image for dependencies #156

zeratax opened this issue Apr 7, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@zeratax
Copy link
Owner

zeratax commented Apr 7, 2020

release workflow currently still install a lot of deps which slows down the process, we should create a custom docker image based on the currently used docker image which additionally does:
https://github.com/ZerataX/yacx/blob/c3ef67fc2ef59ea0a8708f2e3ba0a7eb00675566/.github/workflows/release.yml#L22-L26

probably looks something like this

FROM nvidia/cuda:10.2-devel-ubuntu18.04

RUN apt-get update && apt-get install -y --no-install-recommends \
   cmake\
   openjdk-11-jdk \
   default-jdk \
&& \
    rm -rf /var/lib/apt/lists/*

ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk

and then maybe upload to dockerhub or w/e?? idk never really created my own docker image

@zeratax zeratax added the enhancement New feature or request label Apr 7, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant