Skip to content

Commit 5393eaa

Browse files
committed
Added sudo to pipenv
1 parent 9587d73 commit 5393eaa

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,8 @@ FROM rofrano/nyu-devops-base:sp25
44
# Set up the Python development environment
55
WORKDIR /app
66
COPY Pipfile Pipfile.lock ./
7-
RUN python -m pip install -U pip pipenv && \
8-
pipenv install --system --dev
7+
RUN sudo python -m pip install -U pip pipenv && \
8+
sudo pipenv install --system --dev
99

1010
ENV PORT=8080
1111
EXPOSE $PORT
12-
13-
# Enable color terminal for docker exec bash
14-
ENV TERM=xterm-256color
15-
16-
# Become a regular user
17-
USER $USERNAME

0 commit comments

Comments
 (0)