Skip to content

Commit

Permalink
Fix TestCompileWithFeatures tests to ensure new run as user env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecarbs committed Nov 13, 2023
1 parent 6a287b9 commit 6b02818
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devcontainer/devcontainer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ USER root
# Rust tomato - Example description!
WORKDIR `+featureOneDir+`
ENV TOMATO=example
RUN ./install.sh
RUN _CONTAINER_USER="1000" _REMOTE_USER="1000" ./install.sh
# Go potato - Example description!
WORKDIR `+featureTwoDir+`
ENV POTATO=example
RUN VERSION="potato" ./install.sh
RUN VERSION="potato" _CONTAINER_USER="1000" _REMOTE_USER="1000" ./install.sh
USER 1000`, params.DockerfileContent)
}

Expand Down

0 comments on commit 6b02818

Please sign in to comment.