VCMP-Docker/04rel64/Dockerfile

24 lines
437 B
Docker
Raw Normal View History

FROM debian:stable
2017-05-01 22:38:13 +02:00
MAINTAINER Thijn <thijn@viceunderdogs.com>
# Install packages
RUN apt-get update && apt-get install -y \
wget \
unzip \
2017-05-03 12:24:23 +02:00
p7zip \
openjdk-8-jre-headless \
2017-05-03 12:24:23 +02:00
&& adduser --disabled-password --home /home/container container
2017-05-01 22:38:13 +02:00
2017-05-03 12:24:23 +02:00
USER container
ENV USER container
ENV HOME /home/container
ENV VCMP_VERSION v22
ENV VCMP_PLUGIN_PATCH patch7
2017-05-01 22:38:13 +02:00
2017-05-03 12:24:23 +02:00
WORKDIR /home/container
2017-05-01 22:38:13 +02:00
2017-05-03 12:24:23 +02:00
COPY ./start.sh /start.sh
2017-05-01 22:38:13 +02:00
2017-05-03 12:24:23 +02:00
CMD ["/bin/bash", "/start.sh"]