Skip to content

Commit

Permalink
fix ca cert helper script
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenye committed May 12, 2024
1 parent 2cec339 commit 3bd2eb6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,12 @@ RUN set -x && \
${KEPT_PACKAGES[@]} \
${TEMP_PACKAGES[@]} \
&& \
# install CA certificates
curl -o /tmp/insrall_ca_certs.sh -s https://raw.githubusercontent.com/plane-watch/pw-feeder/main/install_ca_certs.sh && \
bash /tmp/insrall_ca_certs.sh && \
# install CA cert helper script: download
curl -o /tmp/install_ca_certs.sh -s https://raw.githubusercontent.com/plane-watch/pw-feeder/main/install_ca_certs.sh && \
# install CA cert helper script: remove sudo (we're already root)
sed -i 's/sudo //g' /tmp/install_ca_certs.sh && \
# install CA cert helper script: run
bash /tmp/install_ca_certs.sh && \
# mlat-client
git clone --depth 1 --single-branch https://github.com/mutability/mlat-client.git "/src/mlat-client" && \
pushd /src/mlat-client && \
Expand Down

0 comments on commit 3bd2eb6

Please sign in to comment.