Skip to content

Commit

Permalink
Dockerfile
Browse files Browse the repository at this point in the history
Initial commit
  • Loading branch information
mindrunner authored Oct 23, 2016
1 parent 55770dc commit 6459201
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
FROM fedora:latest
MAINTAINER Lukas Elsner <[email protected]>

RUN dnf -q upgrade -y && \
dnf install -y \
curl \
ca-certificates \
glibc.i686 \
libstdc++.i686 \
python \
wine \
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
WORKDIR /home/lfs





CMD /home/lfs/lfs.sh

0 comments on commit 6459201

Please sign in to comment.