forked from extern/nushell
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
14
.gitpod.Dockerfile
vendored
14
.gitpod.Dockerfile
vendored
@ -1,7 +1,9 @@
|
|||||||
FROM gitpod/workspace-full
|
FROM gitpod/workspace-full
|
||||||
USER root
|
|
||||||
RUN apt-get update && apt-get install -y libssl-dev \
|
USER gitpod
|
||||||
libxcb-composite0-dev \
|
|
||||||
pkg-config \
|
RUN sudo apt-get update && \
|
||||||
curl \
|
sudo apt-get install -y \
|
||||||
rustc
|
libssl-dev \
|
||||||
|
libxcb-composite0-dev \
|
||||||
|
pkg-config
|
||||||
|
Loading…
Reference in New Issue
Block a user