mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
44a114111e
- Use the correct user for gitpod Dockerfile. - Remove unneeded packages (curl, rustc) from gitpod Dockerfile.
9 lines
172 B
Docker
9 lines
172 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
|