mirror of
https://github.com/nushell/nushell
synced 2025-01-13 13:49:21 +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 quay.io/nushell/nu-base:${FROMTAG} as base
|
||||||
FROM rust:1.37-slim
|
FROM rust:1.37-slim
|
||||||
COPY --from=base /usr/local/bin/nu /usr/local/bin/nu
|
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"]
|
ENTRYPOINT ["nu"]
|
||||||
CMD ["-l", "info"]
|
CMD ["-l", "info"]
|
||||||
|
|
|
@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND noninteractive
|
||||||
RUN apt-get update && apt-get install -y libssl-dev \
|
RUN apt-get update && apt-get install -y libssl-dev \
|
||||||
libxcb-composite0-dev \
|
libxcb-composite0-dev \
|
||||||
libx11-dev \
|
libx11-dev \
|
||||||
|
libssl-dev \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
curl
|
curl
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue