We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18335b commit dfb1c77Copy full SHA for dfb1c77
docker/Dockerfile
@@ -1,16 +1,13 @@
1
-FROM ubuntu:16.04
+FROM ubuntu:latest
2
3
-RUN apt-get clean
+#RUN apt-get clean
4
RUN apt-get update
5
-RUN apt-get install -y python3-dev python3-pip
6
-RUN pip3 install pipenv
+RUN apt-get install -y python3-dev python3-pip git
7
8
-ADD .. /bossphorus
+RUN git clone https://github.com/aplbrain/bossphorus.git
+WORKDIR bossphorus
9
+ENV LC_ALL=C.UTF-8
10
+ENV LANG=C.UTF-8
11
+RUN pip3 install numpy blosc h5py intern flask
12
-RUN export LC_ALL=C.UTF-8 ; export LANG=C.UTF-8 ; \
- cd /bossphorus && pipenv install --system
-
13
-EXPOSE 5000
14
15
-ENTRYPOINT cd /bossphorus && \
16
- python3 /bossphorus/run.py
+CMD ["python3", "./local_debug_run.py"]
0 commit comments