Skip to content

Commit

Permalink
fix(docker): install rapidjson-dev package
Browse files Browse the repository at this point in the history
  • Loading branch information
sileht committed Sep 18, 2020
1 parent 2f0061c commit 30fb2ca
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 3 additions & 2 deletions docker/cpu-arm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
libsnappy-dev \
liblmdb-dev \
libutfcpp-dev \
rapidjson-dev \
wget \
unzip \
libspdlog-dev \
Expand Down Expand Up @@ -83,7 +84,7 @@ LABEL maintainer="[email protected]"
LABEL description="DeepDetect deep learning server & API / CPU NCNN-only RPi3 version"

# Install tools and dependencies
RUN apt-get update && \
RUN apt-get update && \
apt-get install -y wget \
libopenblas-base \
liblmdb0 \
Expand Down Expand Up @@ -121,4 +122,4 @@ VOLUME ["/data"]

# Set entrypoint
CMD ./dede -host 0.0.0.0
EXPOSE 8080
EXPOSE 8080
4 changes: 2 additions & 2 deletions docker/cpu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
libsnappy-dev \
liblmdb-dev \
libutfcpp-dev \
rapidjson-dev \
wget \
autoconf \
libtool-bin \
Expand Down Expand Up @@ -97,7 +98,7 @@ LABEL maintainer="[email protected]"
LABEL description="DeepDetect deep learning server & API / CPU version"

# Install tools and dependencies
RUN apt-get update && \
RUN apt-get update && \
apt-get install -y wget \
libopenblas-base \
liblmdb0 \
Expand Down Expand Up @@ -145,4 +146,3 @@ VOLUME ["/data"]
# Set entrypoint
CMD ./dede -host 0.0.0.0
EXPOSE 8080

5 changes: 3 additions & 2 deletions docker/gpu-xenial.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RUN apt-get update && \
libsnappy-dev \
liblmdb-dev \
libutfcpp-dev \
rapidjson-dev \
wget \
autoconf \
libtool-bin \
Expand Down Expand Up @@ -102,7 +103,7 @@ LABEL maintainer="[email protected]"
LABEL description="DeepDetect deep learning server & API / GPU version"

# Install tools and dependencies
RUN apt-get update && \
RUN apt-get update && \
apt-get install -y wget \
libopenblas-base \
liblmdb0 \
Expand Down Expand Up @@ -147,4 +148,4 @@ VOLUME ["/data"]

# Set entrypoint
CMD ./dede -host 0.0.0.0
EXPOSE 8080
EXPOSE 8080
3 changes: 2 additions & 1 deletion docker/gpu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
libsnappy-dev \
liblmdb-dev \
libutfcpp-dev \
rapidjson-dev \
wget \
autoconf \
libtool-bin \
Expand Down Expand Up @@ -122,7 +123,7 @@ LABEL maintainer="[email protected]"
LABEL description="DeepDetect deep learning server & API / GPU version"

# Install tools and dependencies
RUN apt-get update && \
RUN apt-get update && \
apt-get install -y wget \
libopenblas-base \
liblmdb0 \
Expand Down

0 comments on commit 30fb2ca

Please sign in to comment.