mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-02-10 12:35:23 +08:00
Ubuntu 14.04 is EOLed and there is major problem: qt is downloaded from ``` https://qt-mirror.dannhauer.de/ ``` This host uses LE certificate, but for ubuntu 14.04 new root cert is not aviable There is several workarounds for this, but they are rather complicated Like this one: https://askubuntu.com/a/1366719/39452 No point of making this workaround
16 lines
390 B
Docker
16 lines
390 B
Docker
FROM ubuntu:16.04
|
|
|
|
ENV TZ=Etc/UTC
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN apt-get -y update && \
|
|
apt-get -y install python \
|
|
python3 \
|
|
sudo
|
|
RUN rm /usr/bin/python && ln -s /usr/bin/python2 /usr/bin/python
|
|
ADD . /build_tools
|
|
WORKDIR /build_tools
|
|
|
|
CMD cd tools/linux && \
|
|
python3 ./automate.py
|