-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (27 loc) · 699 Bytes
/
Dockerfile
File metadata and controls
33 lines (27 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM fedora:latest
MAINTAINER Lukas Elsner <open@mindrunner.de>
RUN dnf -q upgrade -y && \
dnf install -y \
curl \
ca-certificates \
glibc.i686 \
libstdc++.i686 \
python \
wine \
unzip \
xorg-x11-server-Xvfb \
&& dnf clean all \
&& rm -rf \
/var/lib/dnf/* \
/tmp/* \
/var/tmp/* \
/usr/share/locale/*
RUN useradd -ms /bin/bash lfs
USER lfs
RUN mkdir /home/lfs/app
WORKDIR /home/lfs/app
RUN curl -o lfs-server.zip https://www.lfs.net/download/LFS_S3_DCON_6V.zip \
&& unzip lfs-server.zip \
&& rm lfs-server.zip \
&& rm setup.cfg
CMD wine DCon.exe