Skip to content

Commit

Permalink
add wine base image
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 9, 2015
1 parent c4e5154 commit cfda64c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions wine/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Wine docker image base
FROM debian:jessie
MAINTAINER Jessie Frazelle <[email protected]>

# install wine
RUN apt-get update && apt-get install -y \
wine \
--no-install-recommends && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
wine32 \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV HOME /root
WORKDIR $HOME

0 comments on commit cfda64c

Please sign in to comment.