VCMP-Docker/04rel64/Dockerfile

24 lines
437 B
Docker

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