Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Kaiser
GR Build Images
Commits
0358ba71
Commit
0358ba71
authored
Apr 14, 2021
by
Daniel Kaiser
Browse files
Add Qt5 for wasm to emscripten image
parent
02644b98
Pipeline
#37040
passed with stage
in 92 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
emscripten/Dockerfile
View file @
0358ba71
FROM
ubuntu:18.04
SHELL
["/bin/bash", "-c"]
RUN
apt-get update
&&
\
apt-get dist-upgrade
-y
&&
\
apt-get
install
-y
git make python3 cmake nodejs default-jre build-essential
&&
\
apt-get
install
-y
git make
wget
python3 cmake nodejs default-jre build-essential
&&
\
rm
-rf
/var/lib/apt/lists/
*
&&
\
git clone https://github.com/juj/emsdk.git
&&
\
cd
emsdk
&&
\
./emsdk
install
1.40.1
&&
\
./emsdk activate 1.40.1
&&
\
cd
/
&&
\
source
/emsdk/emsdk_env.sh
&&
\
wget
-q
-c
https://download.qt.io/archive/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz
&&
\
tar
-xf
qt-everywhere-src-5.15.2.tar.xz
&&
\
rm
qt-everywhere-src-5.15.2.tar.xz
&&
\
cd
qt-everywhere-src-5.15.2
&&
\
./configure
-xplatform
wasm-emscripten
-nomake
examples
-nomake
tests
-opensource
-prefix
$PWD
/qtbase
--confirm-license
&&
\
make module-qtbase
&&
\
cd
..
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment