chore: fix tar command

This commit is contained in:
Jesús Pérez Lorenzo 2024-10-03 05:48:38 +00:00
parent ba35aef78c
commit 4c02ca07cd

View File

@ -79,7 +79,7 @@ RUN set -eux; \
COPY --from=build /usr/local/bin/webhook /usr/local/bin/webhook
COPY bin.tar.gz /tmp
RUN tar -C /usr/local/bin xzf /tmp/bin.tar.gz
RUN tar -C /usr/local/bin -xvzf /tmp/bin.tar.gz
WORKDIR /home/webhook
VOLUME ["/etc/webhook"]
EXPOSE 9000