python3
Line | |
---|
1 | FROM ubuntu:cosmic
|
---|
2 |
|
---|
3 | RUN 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 |
|
---|
15 | ADD entrypoint.sh setup.sh build.sh /root/
|
---|
16 |
|
---|
17 | ENTRYPOINT ["/root/entrypoint.sh"]
|
---|
18 | CMD ["bash"]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.