Spaces:
Runtime error
Runtime error
koji
commited on
Commit
·
5231d74
1
Parent(s):
2178e6a
update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -74,5 +74,6 @@ RUN pip install -r requirements.txt
|
|
74 |
#USER user
|
75 |
COPY --chown=root . $HOME/app
|
76 |
# CMD ["python", "main.py"]
|
|
|
77 |
RUN chmod +x entrypoint.sh
|
78 |
-
ENTRYPOINT ["/bin/bash", "-c", "entrypoint.sh"]
|
|
|
74 |
#USER user
|
75 |
COPY --chown=root . $HOME/app
|
76 |
# CMD ["python", "main.py"]
|
77 |
+
COPY entrypoint.sh /entrypoint.sh
|
78 |
RUN chmod +x entrypoint.sh
|
79 |
+
ENTRYPOINT ["/bin/bash", "-c", "./entrypoint.sh"]
|