Skip to content

Commit

Permalink
adds Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
spapa013 committed Aug 17, 2023
1 parent 369b92d commit bdfed37
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
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

0 comments on commit bdfed37

Please sign in to comment.