Ben Kristinsson 2022-09-15 22:56:41 +02:00
parent e8f81df111
commit cbe7ed738f
1 changed files with 23 additions and 0 deletions

23
Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM ubuntu:22.04
MAINTAINER Ben K <ben@sudo.is>
RUN apt-get update -y && \
apt-get install -y playonlinux && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y wine32 && \
apt-get autoremove && \
apt-get clean && \
rm -rf /tmp/*
ENV UID 1000
ENV USERNAME ben
RUN useradd -u ${UID} -G video,adm,sudo -ms /bin/bash ${USERNAME}
USER ${USERNAME}
WORKDIR /home/${USERNAME}
ENV USER ${USERNAME}
ENV HOME /home/${USERNAME}
CMD /bin/bash