Update Dockerfile

Need to add the "yes" flag to the apt upgrade command so that it will actually install the updates.
This commit is contained in:
Justin Paul
2020-09-28 12:57:19 -04:00
committed by GitHub
parent 86bd58f8ee
commit 03c2479d5d
+1 -1
View File
@@ -1,7 +1,7 @@
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -q update && \
apt-get -q upgrade && \
apt-get -qy upgrade && \
apt-get install -qy screen time sudo unzip software-properties-common nano git make automake build-essential pkg-config libevent-dev libncurses5-dev fonts-powerline powerline mariadb-client libmysqlclient-dev unrar p7zip-full mediainfo lame ffmpeg && \
add-apt-repository ppa:ondrej/php && \
apt-get -q update && \