jonathanjordan21 commited on
Commit
84d2ae9
·
verified ·
1 Parent(s): 19887d2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -4
Dockerfile CHANGED
@@ -26,9 +26,13 @@ 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
- COPY --chown=1000 entrypoint.sh /app/entrypoint.sh
30
 
31
- RUN chmod +x /app/entrypoint.sh
32
 
33
- # Set the entrypoint to the script
34
- ENTRYPOINT ["/app/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 /app/entrypoint.sh
30
 
31
+ # RUN chmod +x /app/entrypoint.sh
32
 
33
+ # # Set the entrypoint to the script
34
+ # ENTRYPOINT ["/app/entrypoint.sh"]
35
+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | /bin/bash -
36
+
37
+ ENTRYPOINT ["/bin/bash"]
38
+ CMD ["entrypoint.sh"]