add -y to apt-get command

This commit is contained in:
Michael (Parker) Parker 2019-03-27 17:32:47 -04:00
parent 3b1b2ba4d5
commit 123a3d5681

View File

@ -7,8 +7,8 @@ FROM openjdk:8-jre-slim
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
RUN apt-get update \
&& apt-get install curl ca-certificates openssl git tar sqlite fontconfig tzdata \
RUN apt-get update -y \
&& apt-get install -y curl ca-certificates openssl git tar sqlite fontconfig tzdata \
&& useradd -d /home/container -m container
USER container