Skip to content

Commit dfb1c77

Browse files
committed
Update dockerfile
1 parent a18335b commit dfb1c77

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

Diff for: docker/Dockerfile

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:latest
22

3-
RUN apt-get clean
3+
#RUN apt-get clean
44
RUN apt-get update
5-
RUN apt-get install -y python3-dev python3-pip
6-
RUN pip3 install pipenv
5+
RUN apt-get install -y python3-dev python3-pip git
76

8-
ADD .. /bossphorus
7+
RUN git clone https://github.com/aplbrain/bossphorus.git
8+
WORKDIR bossphorus
9+
ENV LC_ALL=C.UTF-8
10+
ENV LANG=C.UTF-8
11+
RUN pip3 install numpy blosc h5py intern flask
912

10-
RUN export LC_ALL=C.UTF-8 ; export LANG=C.UTF-8 ; \
11-
cd /bossphorus && pipenv install --system
12-
13-
EXPOSE 5000
14-
15-
ENTRYPOINT cd /bossphorus && \
16-
python3 /bossphorus/run.py
13+
CMD ["python3", "./local_debug_run.py"]

0 commit comments

Comments
 (0)