Update Dockerfile
Browse files- Dockerfile +3 -5
Dockerfile
CHANGED
|
@@ -16,7 +16,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 16 |
# Install nano
|
| 17 |
RUN apt-get update && apt-get install -y nano
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
| 20 |
|
| 21 |
# Install Potato and Python dependencies
|
| 22 |
#ARG CACHEBUST=1
|
|
@@ -30,10 +32,6 @@ RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
| 30 |
# List installed dependencies
|
| 31 |
#RUN pip list
|
| 32 |
|
| 33 |
-
# Copy files and set access rights
|
| 34 |
-
COPY --chown=user . /app
|
| 35 |
-
RUN chmod +x /app/start.sh
|
| 36 |
-
|
| 37 |
# Expose web port
|
| 38 |
EXPOSE 7860
|
| 39 |
|
|
|
|
| 16 |
# Install nano
|
| 17 |
RUN apt-get update && apt-get install -y nano
|
| 18 |
|
| 19 |
+
# Copy files and set access rights
|
| 20 |
+
COPY --chown=user . /app
|
| 21 |
+
RUN chmod +x /app/start.sh
|
| 22 |
|
| 23 |
# Install Potato and Python dependencies
|
| 24 |
#ARG CACHEBUST=1
|
|
|
|
| 32 |
# List installed dependencies
|
| 33 |
#RUN pip list
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
# Expose web port
|
| 36 |
EXPOSE 7860
|
| 37 |
|