Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tool/docker/devel/ubuntu/cpu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ RUN mkdir /var/run/sshd \
&& mkdir /root/.ssh

# build incubator singa
RUN git clone https://github.com/apache/incubator-singa.git $HOME/incubator-singa \
&& cd $HOME/incubator-singa \
RUN git clone https://github.com/apache/incubator-singa.git /incubator-singa \
&& cd /incubator-singa \
&& mkdir build && cd build \
&& cmake -DENABLE_TEST=ON -DUSE_PYTHON3=ON -DUSE_MKLDNN=ON ..
RUN cd $HOME/incubator-singa/build && make && make install
RUN cd /incubator-singa/build && make && make install

WORKDIR $HOME/incubator-singa
WORKDIR /incubator-singa
EXPOSE 22

CMD ["/usr/sbin/sshd", "-D"]
Expand Down