Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -55,7 +55,7 @@ ENV HOME=/home/user \
|
|
55 |
#RUN chmod -R 755 $HOME/app
|
56 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
57 |
#COPY --chown=user . $HOME/app
|
58 |
-
RUN
|
59 |
# Install requirements.txt
|
60 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
61 |
CMD ["python", "-m", "main"]
|
|
|
55 |
#RUN chmod -R 755 $HOME/app
|
56 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
57 |
#COPY --chown=user . $HOME/app
|
58 |
+
RUN python -m pip install --upgrade pip
|
59 |
# Install requirements.txt
|
60 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
61 |
CMD ["python", "-m", "main"]
|