switching from apt to apt-get to avoid complaining

This commit is contained in:
Leopere 2018-10-02 17:31:32 -04:00
parent cb70cc21df
commit 765024b476

View file

@ -4,9 +4,9 @@ FROM ubuntu:18.04
MAINTAINER chamunks [at] gmail [dot] com
RUN adduser lbrycrdd --gecos GECOS --shell /bin/bash/ --disabled-password --home /data/ && \
apt update && \
apt -y install unzip wget && \
apt autoclean -y && \
apt-get update && \
apt-get -y install unzip wget && \
apt-get autoclean -y && \
rm -rf /var/lib/apt/lists/*