-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from fanout/jkarneges/qt6
use qt6
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ FROM ubuntu:22.04 as build | |
# Install deps | ||
RUN \ | ||
apt-get update && \ | ||
apt-get install -y git pkg-config make g++ rustc cargo libssl-dev qtbase5-dev libzmq3-dev libboost-dev | ||
apt-get install -y git pkg-config make g++ rustc cargo libssl-dev qt6-base-dev libzmq3-dev libboost-dev | ||
|
||
WORKDIR /build | ||
|
||
|
@@ -32,7 +32,7 @@ MAINTAINER Justin Karneges <[email protected]> | |
|
||
RUN \ | ||
apt-get update && \ | ||
apt-get install -y libqt5core5a libqt5network5 libzmq5 | ||
apt-get install -y libqt6core6 libqt6network6 libzmq5 | ||
|
||
COPY --from=build /build/out/ / | ||
|
||
|