Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
quassel-docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
quassel-docker
Commits
d7bc6a26
Verified
Commit
d7bc6a26
authored
6 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Switched from binary on ubuntu to building from source on alpine
parent
26e0a028
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+50
-6
50 additions, 6 deletions
Dockerfile
with
50 additions
and
6 deletions
Dockerfile
+
50
−
6
View file @
d7bc6a26
FROM
ubuntu:bionic
FROM
alpine:latest
AS
builder
RUN
apt-get update
&&
\
apt-get
install
-y
software-properties-common
&&
\
add-apt-repository ppa:mamarley/quassel
&&
\
apt-get update
&&
\
apt-get
install
-y
quassel-core libqt5sql5-psql
RUN
apk add
--no-cache
\
cmake
\
curl
\
dbus-dev
\
g++
\
gcc
\
git
\
icu-dev
\
icu-libs
\
libressl
\
libressl-dev
\
openldap-dev
\
make
\
paxmark
\
qt5-qtbase-dev
\
qt5-qtscript-dev
\
qt5-qtbase-postgresql
\
qt5-qtbase-sqlite
RUN
mkdir
/quassel
&&
\
cd
/quassel/
&&
\
git clone
-b
identd-listen-all
--single-branch
https://github.com/justjanne/quassel src
RUN
mkdir
/quassel/build
&&
\
cd
/quassel/build
&&
\
cmake
\
-DCMAKE_INSTALL_PREFIX
=
/quassel/install
\
-DCMAKE_BUILD_TYPE
=
"Release"
\
-DUSE_QT5
=
ON
\
-DWITH_KDE
=
OFF
\
-DWANT_QTCLIENT
=
OFF
\
-DWANT_CORE
=
ON
\
-DWANT_MONO
=
OFF
\
/quassel/src
RUN
cd
/quassel/build
&&
\
make
&&
\
make
install
&&
\
paxmark
-m
/quassel/install/bin/quasselcore
FROM
alpine:latest
RUN
apk add
--no-cache
\
icu-libs
\
libressl
\
qt5-qtbase
\
qt5-qtscript
\
qt5-qtbase-postgresql
\
qt5-qtbase-sqlite
COPY
--from=builder /quassel/install/bin /usr/bin/
EXPOSE
4242/tcp
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment