Commit 83d65226 authored by Simon Cornet's avatar Simon Cornet
Browse files

[docker] feat: add trick for complete rebuild

parent 3ba02823
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# use latest roundcubemail container
FROM docker.io/roundcube/roundcubemail:1.6.9-apache

# build cache date argument trick
ARG GITEA_SHA=some_sha
RUN echo $GITEA_SHA

# prepare basic stuff
RUN set -e && ln -sf bash /bin/sh
RUN set -e \