adding missing docker dependencies openssl and pkgconfig

Signed-off-by: Vanessa Sochat <vsochat@stanford.edu>
This commit is contained in:
Vanessa Sochat 2019-09-11 13:44:23 -04:00
parent 53cfa09cd2
commit 1f3f3d3105
No known key found for this signature in database
GPG key ID: 55B56B9BF3B77E5C
2 changed files with 3 additions and 0 deletions

View file

@ -2,5 +2,7 @@ ARG FROMTAG=latest
FROM quay.io/nushell/nu-base:${FROMTAG} as base
FROM rust:1.37-slim
COPY --from=base /usr/local/bin/nu /usr/local/bin/nu
RUN apt-get update && \
apt-get install -y pkg-config libssl-dev
ENTRYPOINT ["nu"]
CMD ["-l", "info"]

View file

@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y libssl-dev \
libxcb-composite0-dev \
libx11-dev \
libssl-dev \
pkg-config \
curl