aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2019-02-19 12:23:16 -0700
committerCody Hiar <codyfh@gmail.com>2019-02-19 12:23:16 -0700
commit3842fb16dad9e6883baebc6a0567a0a0b3a365a2 (patch)
tree767880ddb6b8b0f5d17254acd8e7d75fd7215fa3 /Dockerfile
parent71a955a79495e09ff8a91b46f68c79e17447bd23 (diff)
Minor tweaksHEADmaster
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile13
1 files changed, 2 insertions, 11 deletions
diff --git a/Dockerfile b/Dockerfile
index c8057d6..aac248e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,8 +13,7 @@ RUN apt-get update && apt-get install -y \
libasound2 \
libgl1-mesa-glx \
libpulse0 \
- dbus-x11 \
- sudo
+ dbus-x11
RUN /bin/bash
@@ -22,21 +21,13 @@ ENV UNAME thorny
ENV UID 1000
ENV GID 985
-
-# # Set up the user
+# Set up the user
RUN export UNAME=$UNAME UID=$UID GID=1000 && \
mkdir -p "/home/${UNAME}" && \
echo "${UNAME}:x:${UID}:${GID}:${UNAME} User,,,:/home/${UNAME}:/bin/bash" >> /etc/passwd && \
echo "${UNAME}:x:${UID}:" >> /etc/group
-RUN chown thorny:thorny /home/thorny
-# echo "${UNAME} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${UNAME} && \
-# chmod 0440 /etc/sudoers.d/${UNAME} && \
-# chown ${UID}:${GID} -R /home/${UNAME} && \
-# gpasswd -a ${UNAME} audio
-
-USER $UNAME
ENV HOME /home/thorny
WORKDIR /home/thorny
CMD /bin/bash