-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
feat: dockerfile #191
feat: dockerfile #191
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FROM nvidia/cuda:11.6.2-cudnn8-devel-ubuntu20.04
RUN apt-get update && apt-get install -y \
git \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade "jax[cuda]" -f https://storage.googleapis.com/jax-releases/jax_releases.html \
&& pip install -q \
git+https://github.com/borisdayma/dalle-mini.git \
git+https://github.com/patil-suraj/vqgan-jax.git
WORKDIR /workspace
Use dockerfile best practices: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#apt-get
Co-authored-by: Adam Stachowicz <[email protected]>
Many thanks! |
Should be tested first (screenshots IMO is must have) I still don't know what this image should do. There is no |
The dockerfile was intented to be just environment for development and inference. If you want to have for example gradio or streamlit app to be run after the start, I can make it so. |
So why not use, for example Gitpod, just like ReactOS? https://github.com/reactos/reactos/blob/master/.gitpod.yml https://gitpod.io/#https://github.com/reactos/reactos |
I think it's a great start! Many thanks for this 🔥 |
No description provided.