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 |
||||
MAINTAINER Jezer Mejía <amyuki4@gmail.com> |
||||
LABEL maintainer Jezer Mejía <amyuki4@gmail.com> |
||||
|
||||
RUN apt-get update |
||||
|
||||
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 \ |
||||
apt-get install -y \ |
||||
liblightdm-gobject-1-dev \ |
||||
libqt5webengine5 \ |
||||
pyqt5-dev-tools \ |
||||
python3-gi \ |
||||
python3-pyqt5 \ |
||||
python3-ruamel.yaml \ |
||||
python3-pyinotify \ |
||||
python3-xlib \ |
||||
python3-pip |
||||
apt-get install -y \ |
||||
liblightdm-gobject-1-dev \ |
||||
gobject-introspection \ |
||||
libgirepository1.0-dev \ |
||||
libqt5webengine5 \ |
||||
pyqt5-dev-tools \ |
||||
libxcb1 \ |
||||
libx11-6 \ |
||||
libcairo2 |
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive \ |
||||
apt-get install -y \ |
||||
patchelf \ |
||||
rsync \ |
||||
zip \ |
||||
sudo |
||||
apt-get install -y \ |
||||
python3-gi \ |
||||
python3-pyqt5 \ |
||||
python3-pyqt5.qtwebengine \ |
||||
python3-ruamel.yaml \ |
||||
python3-pyinotify \ |
||||
python3-pip |
||||
|
||||
RUN DEBIAN_FRONTEND=noninteractive \ |
||||
pip3 install PyGObject \ |
||||
PyQt5 \ |
||||
PyQtWebEngine \ |
||||
ruamel.yaml \ |
||||
python-xlib \ |
||||
cx_Freeze |
||||
apt-get install -y \ |
||||
rsync \ |
||||
sudo |
||||
|
||||
VOLUME /build |
||||
WORKDIR /build |
||||
|
Loading…
Reference in new issue