Browse Source

Merge pull request #75 from jimrybarski/69-dockerignore

69 dockerignore
feature/load_slices
Jim Rybarski 9 years ago
parent
commit
a0b57ecb53
2 changed files with 23 additions and 3 deletions
  1. +8
    -0
      .dockerignore
  2. +15
    -3
      Dockerfile

+ 8
- 0
.dockerignore View File

@ -0,0 +1,8 @@
.gitignore
.git
*.md
*.txt
Dockerfile
Makefile
setup.cfg
env

+ 15
- 3
Dockerfile View File

@ -1,10 +1,12 @@
FROM ubuntu:15.04
# This is just for functional testing. We install scikit-image just as a convenient way to view images. Many other
# packages could easily accomplish this.
FROM debian:latest
MAINTAINER Jim Rybarski <jim@rybarski.com>
RUN mkdir -p /var/nds2
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
libatlas3-base \
liblapack-dev \
libblas-dev \
python \
@ -12,7 +14,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
python-dev \
python3-dev \
python-pip \
python3-pip
python3-pip \
libfreetype6-dev \
python3-matplotlib \
libfreetype6-dev \
libpng-dev \
libjpeg-dev \
pkg-config \
python3-skimage \
&& pip3 install -U cython \
scikit-image \
&& rm -rf /var/lib/apt/lists/*
COPY . /opt/nd2reader
WORKDIR /opt/nd2reader


Loading…
Cancel
Save