Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -26,7 +26,7 @@ RUN airflow db init && \
|
|
| 26 |
# CMD ["sh", "-c", "airflow webserver --port 7860 & airflow scheduler"]
|
| 27 |
# CMD /bin/bash -c "airflow webserver --port 7860 & airflow scheduler"
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
# RUN chmod +x /app/entrypoint.sh
|
| 32 |
|
|
@@ -35,4 +35,4 @@ RUN airflow db init && \
|
|
| 35 |
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | /bin/bash -
|
| 36 |
|
| 37 |
ENTRYPOINT ["/bin/bash"]
|
| 38 |
-
CMD ["entrypoint.sh"]
|
|
|
|
| 26 |
# CMD ["sh", "-c", "airflow webserver --port 7860 & airflow scheduler"]
|
| 27 |
# CMD /bin/bash -c "airflow webserver --port 7860 & airflow scheduler"
|
| 28 |
|
| 29 |
+
COPY --chown=1000 entrypoint.sh /entrypoint.sh
|
| 30 |
|
| 31 |
# RUN chmod +x /app/entrypoint.sh
|
| 32 |
|
|
|
|
| 35 |
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | /bin/bash -
|
| 36 |
|
| 37 |
ENTRYPOINT ["/bin/bash"]
|
| 38 |
+
CMD ["/entrypoint.sh"]
|