Skip to content

Commit

Permalink
fix || issues in RUN chain
Browse files Browse the repository at this point in the history
  • Loading branch information
kx1t authored Sep 13, 2024
1 parent 8bd8093 commit e18d1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ RUN set -x && \
pushd /var/www/flightairmap/htdocs && \
cp -v /var/www/flightairmap/htdocs/install/flightairmap-nginx-conf.include /etc/nginx/flightairmap-nginx-conf.include && \
chown -vR "${WEBUSER}":"${WEBUSER}" /var/www/flightairmap && \
git log | head -1 | tr -s " " "_" | tee /VERSION || true && \
{ git log | head -1 | tr -s " " "_" | tee /VERSION || true; } && \
rm -rf /var/www/flightairmap/htdocs/.git && \
echo "========== Clean up ==========" && \
apt-get remove -y \
Expand Down

0 comments on commit e18d1b8

Please sign in to comment.