source: docker/context/Dockerfile@ 939:de728888b85e

python3
Last change on this file since 939:de728888b85e was 939:de728888b85e, checked in by István Váradi <ivaradi@…>, 5 years ago

The Docker/Wine-based build infrastructure works for Python 3 (re #347)

File size: 461 bytes
Line 
1FROM ubuntu:cosmic
2
3RUN dpkg --add-architecture i386 && \
4 apt-get update -y && \
5 /usr/bin/env DEBIAN_FRONTEND=noninteractive apt-get install -y \
6 tzdata \
7 wget \
8 wine \
9 wine32 && \
10 apt-get clean && \
11 echo "Europe/Budapest" > /etc/timezone && \
12 rm -f /etc/localtime && \
13 dpkg-reconfigure -f noninteractive tzdata
14
15ADD entrypoint.sh setup.sh build.sh /root/
16
17ENTRYPOINT ["/root/entrypoint.sh"]
18CMD ["bash"]
Note: See TracBrowser for help on using the repository browser.