source: docker/context/Dockerfile@ 918:cfa4d89368fa

version_0.39_maint
Last change on this file since 918:cfa4d89368fa was 916:4f738ffc3596, checked in by István Váradi <ivaradi@…>, 5 years ago

Support for building for Windows using Wine

File size: 438 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 echo "Europe/Budapest" > /etc/timezone && \
11 rm -f /etc/localtime && \
12 dpkg-reconfigure -f noninteractive tzdata
13
14ADD entrypoint.sh setup.sh build.sh /root/
15
16ENTRYPOINT ["/root/entrypoint.sh"]
17CMD ["bash"]
Note: See TracBrowser for help on using the repository browser.