mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2025-12-22 09:07:07 +00:00
15 lines
400 B
Docker
15 lines
400 B
Docker
FROM ubuntu:20.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 ["sh", "-c", "cd tools/linux && python3 ./automate.py"]
|