-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed a bunch of the images, reworked the dockerfiles, added (hopef…
…ully!) notebook support!
- Loading branch information
1 parent
3c5a293
commit 05353db
Showing
5 changed files
with
41 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM --platform=$BUILDPLATFORM quay.io/jupyter/minimal-notebook:latest | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
USER root | ||
|
||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
git \ | ||
build-essential \ | ||
libnvidia-compute-535 \ | ||
software-properties-common\ | ||
python3.10-venv | ||
|
||
USER jovyan | ||
WORKDIR /home/jovyan/work | ||
|
||
ENV VIRTUAL_ENV=/home/jovyan/.venv | ||
RUN python3 -m venv $VIRTUAL_ENV | ||
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | ||
|
||
RUN pip3 install --upgrade pip && \ | ||
pip3 install -U pip setuptools wheel && \ | ||
pip3 install -U 'spacy[cuda11x]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: "3.6" | ||
services: | ||
dask: | ||
image: hex-app:dask | ||
build: dask/. | ||
|
||
dask-worker: | ||
image: hex-app:dask-worker | ||
build: dask-worker/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters