Use non-slim variants to remove needing to apt additional packages

Prevents needing to rebuild all the time via allowing cache hits.
This commit is contained in:
Luke Parker
2023-07-21 13:58:54 -04:00
parent 298d1fd3ba
commit 641077a089
4 changed files with 2 additions and 17 deletions

View File

@@ -28,8 +28,6 @@ RUN tar xzvf bitcoin-${BITCOIN_VERSION}-x86_64-linux-gnu.tar.gz
FROM debian:bullseye-slim as image
RUN apt-get update && apt-get upgrade -y
WORKDIR /home/bitcoin
COPY --from=builder /home/bitcoin/* .
RUN mv bin/* /bin && mv lib/* /lib