-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM at-docker.ad.bcm.edu:5000/microns-base | ||
|
||
LABEL mantainer="Stelios Papadopoulos <[email protected]>" | ||
|
||
# Install additional packages | ||
|
||
# Update and rebuild jupyterlab | ||
RUN python -m pip install --no-cache-dir --upgrade jupyterlab | ||
|
||
WORKDIR /root | ||
ARG CLOUDVOLUME_TOKEN | ||
RUN mkdir -p .cloudvolume/secrets | ||
RUN echo "{\"token\": \"${CLOUDVOLUME_TOKEN:-}\"}" > .cloudvolume/secrets/cave-secret.json | ||
|
||
# CURRENT PACKAGE | ||
COPY . /src/microns-proximities | ||
RUN python -m pip install --no-cache-dir /src/microns-proximities/python/microns-proximities | ||
RUN python -m pip install --no-cache-dir /src/microns-proximities/python/microns-proximities-api |