Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
RUN echo test
|
| 3 |
|
| 4 |
-
RUN apt update && apt install -y python3
|
| 5 |
|
| 6 |
#CMD python3 -m http.server
|
| 7 |
RUN echo $(pwd)
|
|
@@ -12,5 +12,5 @@ COPY . /app
|
|
| 12 |
RUN echo $(pwd)
|
| 13 |
RUN ls -l
|
| 14 |
RUN chmod +x start.sh
|
| 15 |
-
RUN
|
| 16 |
CMD ["./start.sh"]
|
|
|
|
| 1 |
FROM ubuntu:latest
|
| 2 |
RUN echo test
|
| 3 |
|
| 4 |
+
RUN apt update && apt install -y python3 python3-pip
|
| 5 |
|
| 6 |
#CMD python3 -m http.server
|
| 7 |
RUN echo $(pwd)
|
|
|
|
| 12 |
RUN echo $(pwd)
|
| 13 |
RUN ls -l
|
| 14 |
RUN chmod +x start.sh
|
| 15 |
+
RUN pip install -r requirements.txt
|
| 16 |
CMD ["./start.sh"]
|