Skip to content

Commit

Permalink
docker: don't use wildcard for copy
Browse files Browse the repository at this point in the history
  • Loading branch information
sonroyaalmerol authored May 14, 2024
1 parent 57b5456 commit 9c30b16
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,17 @@ RUN apt-get update -y && \

# add config, binaries, libraries, and init files

COPY --from=builder /usr/local/sbin/* /usr/sbin/
COPY --from=builder /usr/local/lib/sogo/* /usr/lib/sogo/
COPY --from=builder /usr/lib/GNUstep/* /usr/lib/GNUstep/
COPY --from=builder /usr/local/lib/GNUstep/* /usr/lib/GNUstep/
COPY --from=builder /usr/include/GNUstep/* /usr/include/GNUstep/
COPY --from=builder /usr/local/include/GNUstep/* /usr/include/GNUstep/
COPY --from=builder /usr/share/GNUstep/* /usr/share/GNUstep/
COPY --from=builder /usr/local/sbin/. /usr/sbin/
COPY --from=builder /usr/local/lib/sogo/. /usr/lib/sogo/
COPY --from=builder /usr/lib/GNUstep/. /usr/lib/GNUstep/
COPY --from=builder /usr/local/lib/GNUstep/. /usr/lib/GNUstep/
COPY --from=builder /usr/include/GNUstep/. /usr/include/GNUstep/
COPY --from=builder /usr/local/include/GNUstep/. /usr/include/GNUstep/
COPY --from=builder /usr/share/GNUstep/. /usr/share/GNUstep/
COPY --from=builder /tmp/SOGo/Scripts/sogo-default /etc/default/sogo
COPY --from=builder /tmp/SOGo/Scripts/sogo.cron /etc/cron.d/sogo
COPY --from=builder /tmp/SOGo/Scripts/sogo.conf /etc/sogo/sogo.conf
COPY --from=builder /tmp/SOGo/Scripts/* /usr/share/doc/sogo/
COPY --from=builder /tmp/SOGo/Scripts/. /usr/share/doc/sogo/

COPY default-configs/nginx.conf /etc/nginx/sites-enabled/default
COPY supervisord.conf /opt/supervisord.conf
Expand Down

0 comments on commit 9c30b16

Please sign in to comment.