We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9587d73 commit 5393eaaCopy full SHA for 5393eaa
.devcontainer/Dockerfile
@@ -4,14 +4,8 @@ FROM rofrano/nyu-devops-base:sp25
4
# Set up the Python development environment
5
WORKDIR /app
6
COPY Pipfile Pipfile.lock ./
7
-RUN python -m pip install -U pip pipenv && \
8
- pipenv install --system --dev
+RUN sudo python -m pip install -U pip pipenv && \
+ sudo pipenv install --system --dev
9
10
ENV PORT=8080
11
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