JezerM
3 years ago
3 changed files with 31 additions and 24 deletions
@ -0,0 +1,3 @@ |
|||||||
|
/etc/lightdm/web-greeter.yml |
||||||
|
/etc/lightdm/Xgreeter |
||||||
|
/etc/xdg/lightdm/lightdm.conf.d/90-greeter-wrapper.conf |
@ -1,36 +1,40 @@ |
|||||||
FROM ubuntu:20.04 |
FROM ubuntu:20.04 |
||||||
MAINTAINER Jezer Mejía <amyuki4@gmail.com> |
LABEL maintainer Jezer Mejía <amyuki4@gmail.com> |
||||||
|
|
||||||
RUN apt-get update |
RUN apt-get update |
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata |
||||||
|
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y |
||||||
|
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive \ |
||||||
|
apt-get install -y \ |
||||||
|
build-essential |
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \ |
RUN DEBIAN_FRONTEND=noninteractive \ |
||||||
apt-get install -y \ |
apt-get install -y \ |
||||||
liblightdm-gobject-1-dev \ |
liblightdm-gobject-1-dev \ |
||||||
|
gobject-introspection \ |
||||||
|
libgirepository1.0-dev \ |
||||||
libqt5webengine5 \ |
libqt5webengine5 \ |
||||||
pyqt5-dev-tools \ |
pyqt5-dev-tools \ |
||||||
|
libxcb1 \ |
||||||
|
libx11-6 \ |
||||||
|
libcairo2 |
||||||
|
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive \ |
||||||
|
apt-get install -y \ |
||||||
python3-gi \ |
python3-gi \ |
||||||
python3-pyqt5 \ |
python3-pyqt5 \ |
||||||
|
python3-pyqt5.qtwebengine \ |
||||||
python3-ruamel.yaml \ |
python3-ruamel.yaml \ |
||||||
python3-pyinotify \ |
python3-pyinotify \ |
||||||
python3-xlib \ |
|
||||||
python3-pip |
python3-pip |
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \ |
RUN DEBIAN_FRONTEND=noninteractive \ |
||||||
apt-get install -y \ |
apt-get install -y \ |
||||||
patchelf \ |
|
||||||
rsync \ |
rsync \ |
||||||
zip \ |
|
||||||
sudo |
sudo |
||||||
|
|
||||||
RUN DEBIAN_FRONTEND=noninteractive \ |
|
||||||
pip3 install PyGObject \ |
|
||||||
PyQt5 \ |
|
||||||
PyQtWebEngine \ |
|
||||||
ruamel.yaml \ |
|
||||||
python-xlib \ |
|
||||||
cx_Freeze |
|
||||||
|
|
||||||
VOLUME /build |
VOLUME /build |
||||||
WORKDIR /build |
WORKDIR /build |
||||||
|
Loading…
Reference in new issue