Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -11,6 +11,6 @@ COPY ./data ./data
|
|
11 |
COPY ./gradio ./gradio
|
12 |
COPY ./run.sh .
|
13 |
RUN pip3 install -r requirements.txt
|
14 |
-
RUN chmod +x run.sh
|
15 |
-
CMD ["
|
16 |
EXPOSE 8080
|
|
|
11 |
COPY ./gradio ./gradio
|
12 |
COPY ./run.sh .
|
13 |
RUN pip3 install -r requirements.txt
|
14 |
+
RUN chmod a+x run.sh
|
15 |
+
CMD ["run.sh"]
|
16 |
EXPOSE 8080
|