Spaces:
Runtime error
Runtime error
Update docker
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -26,4 +26,7 @@ WORKDIR $HOME/app
|
|
| 26 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 27 |
COPY --chown=user . $HOME/app
|
| 28 |
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 27 |
COPY --chown=user . $HOME/app
|
| 28 |
|
| 29 |
+
# Make run.sh executable
|
| 30 |
+
RUN chmod +x $HOME/app/run.sh
|
| 31 |
+
|
| 32 |
+
CMD ["./run.sh"]
|