mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Fix $PATH conflicts in .gitpod.Dockerfile (#1349)
- Use the correct user for gitpod Dockerfile. - Remove unneeded packages (curl, rustc) from gitpod Dockerfile.
This commit is contained in:
parent
812a76d588
commit
44a114111e
1 changed files with 8 additions and 6 deletions
14
.gitpod.Dockerfile
vendored
14
.gitpod.Dockerfile
vendored
|
@ -1,7 +1,9 @@
|
|||
FROM gitpod/workspace-full
|
||||
USER root
|
||||
RUN apt-get update && apt-get install -y libssl-dev \
|
||||
libxcb-composite0-dev \
|
||||
pkg-config \
|
||||
curl \
|
||||
rustc
|
||||
|
||||
USER gitpod
|
||||
|
||||
RUN sudo apt-get update && \
|
||||
sudo apt-get install -y \
|
||||
libssl-dev \
|
||||
libxcb-composite0-dev \
|
||||
pkg-config
|
||||
|
|
Loading…
Reference in a new issue