X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FAirflow%2FDockerfile;h=bf72444c69ff43c44d84e019899debd2c0af578e;hb=refs%2Fchanges%2F86%2F13286%2F3;hp=2727977fc28167b465a8bef8e2dbd81f9bd3e845;hpb=9f58633dd387f433c6d140ff4d0a0de91907529b;p=osm%2Fdevops.git diff --git a/docker/Airflow/Dockerfile b/docker/Airflow/Dockerfile index 2727977f..bf72444c 100644 --- a/docker/Airflow/Dockerfile +++ b/docker/Airflow/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. ####################################################################################### -FROM apache/airflow:2.3.0-python3.8 +FROM apache/airflow:2.5.2-python3.10 USER root RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ DEBIAN_FRONTEND=noninteractive apt-get --yes install \ @@ -33,14 +33,10 @@ RUN mkdir /tmp/osm RUN dpkg-deb -x osm_common.deb /tmp/osm RUN dpkg-deb -x osm_ngsa.deb /tmp/osm -RUN mv /tmp/osm/usr/lib/python3/dist-packages/* /home/airflow/.local/lib/python3.8/site-packages/ +RUN mv /tmp/osm/usr/lib/python3/dist-packages/* /home/airflow/.local/lib/python3.10/site-packages/ RUN rm -rf /tmp/osm RUN pip3 install \ - -r /home/airflow/.local/lib/python3.8/site-packages/osm_common/requirements.txt \ - -r /home/airflow/.local/lib/python3.8/site-packages/osm_ngsa/requirements.txt - -RUN pip3 install \ - -r /home/airflow/.local/lib/python3.8/site-packages/osm_common/requirements.txt \ - -r /home/airflow/.local/lib/python3.8/site-packages/osm_ngsa/requirements.txt + -r /home/airflow/.local/lib/python3.10/site-packages/osm_common/requirements.txt \ + -r /home/airflow/.local/lib/python3.10/site-packages/osm_ngsa/requirements.txt