Skip to content

Commit

Permalink
remove useless port variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienheureux committed Feb 20, 2025
1 parent 1d3f31d commit 6b88174
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions airflow-scheduler.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ RUN poetry sync --with airflow
# --- --- --- ---
FROM apache/airflow:2.10.4 AS scheduler

# install AWS
# TODO: could be moved to the builder at some point.
USER root
WORKDIR /opt/aws
COPY --from=builder /opt/aws/ .
Expand Down
4 changes: 2 additions & 2 deletions airflow-webserver.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ COPY --from=python-builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
WORKDIR /opt/airflow
COPY ./dags .

EXPOSE ${PORT}
EXPOSE 8080

CMD ["webserver", "--port", ${PORT}]
CMD ["webserver", "--port", "8080"]

0 comments on commit 6b88174

Please sign in to comment.