Skip to content

Commit

Permalink
docker: explicitly install openssl
Browse files Browse the repository at this point in the history
It was included in 'nginx' images previously, but disappeared
  • Loading branch information
sitnik committed Mar 26, 2018
1 parent fa04476 commit 3163a21
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ LABEL org.label-schema.url="https://devicehive.com" \
org.label-schema.name="devicehive-proxy" \
org.label-schema.version="$DH_PROXY_VERSION"

RUN apt-get update && \
apt-get install -y openssl && \
rm -rf /var/lib/apt/lists/*

RUN mkdir /etc/nginx/location.d
ADD nginx.conf /etc/nginx/nginx.conf

Expand Down

0 comments on commit 3163a21

Please sign in to comment.