mirror of
https://github.com/nushell/nushell
synced 2024-11-11 15:37:07 +00:00
adding missing docker dependencies openssl and pkgconfig
Signed-off-by: Vanessa Sochat <vsochat@stanford.edu>
This commit is contained in:
parent
53cfa09cd2
commit
1f3f3d3105
2 changed files with 3 additions and 0 deletions
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue