Skip to content

Commit

Permalink
docker: use rsync for merging
Browse files Browse the repository at this point in the history
  • Loading branch information
sonroyaalmerol committed May 15, 2024
1 parent 4f4e7cf commit 2debab4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ ENV PGID=1000
RUN apt-get update -y && \
apt-get install -y \
ca-certificates \
rsync \
tzdata \
wget \
make \
Expand Down Expand Up @@ -123,8 +124,8 @@ COPY entrypoint.sh /opt/entrypoint.sh

ADD https://github.com/mikefarah/yq/releases/latest/download/yq_linux_${ARCH} /usr/bin/yq

RUN cp -ra /usr/local/lib/GNUstep/. /usr/lib/GNUstep && \
cp -ra /usr/local/include/GNUstep/. /usr/include/GNUstep && \
RUN rsync -avLkq /usr/local/lib/GNUstep/ /usr/lib/GNUstep && \
rsync -avLkq /usr/local/include/GNUstep/ /usr/include/GNUstep && \
rm -rf /usr/local/lib/GNUstep && \
rm -rf /usr/local/include/GNUstep && \
chmod +x /opt/entrypoint.sh
Expand Down

0 comments on commit 2debab4

Please sign in to comment.