-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated Dockerfile with latest packages
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM hdfgroup/hdf5lib:1.8.16 | ||
FROM python:3.6 | ||
MAINTAINER John Readey <[email protected]> | ||
RUN cd /usr/local/src ; \ | ||
pip install --upgrade pip ; \ | ||
pip install h5py ; \ | ||
pip install tornado ; \ | ||
pip install requests ; \ | ||
pip install pytz ; \ | ||
|
@@ -14,7 +15,7 @@ RUN git clone https://github.com/HDFGroup/hdf5-json.git ; \ | |
cd .. ; \ | ||
mkdir h5serv | ||
WORKDIR /usr/local/src/h5serv | ||
COPY server server | ||
COPY h5serv h5serv | ||
COPY util util | ||
COPY test test | ||
COPY data /data | ||
|
@@ -26,4 +27,3 @@ EXPOSE 5000 | |
COPY entrypoint.sh / | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
|