Skip to content

Commit

Permalink
build(docker): fix missing public key issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Jan 2, 2024
1 parent 893b104 commit e35977c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ USER root
ENV POETRY_CACHE_DIR='/var/cache/pypoetry' \
GOOGLE_APPLICATION_CREDENTIALS='/usr/local/airflow/service-account.json'

RUN apt-get update \
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29 \
&& apt-get update \
&& apt-get install -y --no-install-recommends git \
# 1. if you don't need postgres, remember to remove postgresql-dev and sqlalchemy
# 2. libglib2.0-0 libsm6 libxext6 libxrender-dev libgl1-mesa-dev are required by opencv
Expand Down

0 comments on commit e35977c

Please sign in to comment.