Wrapping XRC_DL_URL in quotes when downloading because ampersand

This commit is contained in:
Bradley Bickford 2025-01-08 21:07:46 -05:00
parent 89379b41a7
commit 5070ddccfe

View File

@ -11,7 +11,7 @@ RUN useradd -u 1000 xrc
ARG XRC_DL_URL
RUN curl -fsSL ${XRC_DL_URL} -o /tmp/xrc.zip \
RUN curl -fsSL "${XRC_DL_URL}" -o /tmp/xrc.zip \
&& mkdir /home/xrc/xrc \
&& unzip /tmp/xrc.zip -d /home/xrc/xrc \
&& rm -rf /tmp/xrc.zip \