mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 09:34:30 +01:00
15 lines
288 B
Docker
15 lines
288 B
Docker
FROM gitpod/workspace-full
|
|
|
|
USER gitpod
|
|
|
|
RUN sudo apt-get update && \
|
|
sudo apt-get install -y \
|
|
libssl-dev \
|
|
libxcb-composite0-dev \
|
|
pkg-config \
|
|
libpython3.6 \
|
|
rust-lldb \
|
|
&& sudo rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV RUST_LLDB=/usr/bin/lldb-8
|