You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
203 B
13 lines
203 B
FROM ubuntu:18.04
|
|
|
|
# preparatory steps
|
|
RUN apt-get update
|
|
|
|
# install tools
|
|
RUN apt-get install -y \
|
|
x11-apps \
|
|
xauth
|
|
|
|
RUN adduser --disabled-password --gecos '' test
|
|
USER test
|
|
WORKDIR /home/test
|
|
|