Skip to content

Commit

Permalink
Add FulcrumAdmin to the docker image
Browse files Browse the repository at this point in the history
The fact that it's not there is an oversight, probably. Fixes #253.
  • Loading branch information
cculianu committed Jun 6, 2024
1 parent 383af52 commit 125e94e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ RUN qmake -makefile PREFIX=/usr Fulcrum.pro && \
FROM debian:trixie-slim

RUN apt update && \
apt install -y openssl libqt5network5 zlib1g libbz2-1.0 libjemalloc2 libzmq5 && \
apt install -y openssl libqt5network5 zlib1g libbz2-1.0 libjemalloc2 libzmq5 python3 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

COPY --from=builder /src/Fulcrum /usr/bin/Fulcrum
COPY --from=builder /src/FulcrumAdmin /usr/bin/FulcrumAdmin

VOLUME ["/data"]
ENV DATA_DIR /data
Expand Down

0 comments on commit 125e94e

Please sign in to comment.