You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
368 B
14 lines
368 B
FROM ubuntu:16.10 |
|
MAINTAINER Antergos Developers <dev@antergos.com> |
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update; \ |
|
apt-get install -y \ |
|
libgtk-3-dev \ |
|
liblightdm-gobject-1-dev \ |
|
libdbus-glib-1-dev \ |
|
libwebkit2gtk-4.0-dev \ |
|
ninja-build \ |
|
python3-pip; pip3 install https://github.com/mesonbuild/meson/archive/master.zip |
|
|
|
VOLUME /build |
|
WORKDIR /build
|
|
|