Create Dockerfile

This commit is contained in:
Bl4ckSpr4y 2018-02-25 19:58:11 +02:00 committed by GitHub
parent a16a2bed48
commit aeac09ca25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM ubuntu:16.04
MAINTAINER mrkrabs, <bl4ckspr4y@protonmail.com>
RUN apt update \
&& apt upgrade -y \
&& apt install -y libstdc++6 lib32stdc++6 tar curl iproute2 openssl \
&& useradd -d /home/container -m container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]