Files
2021-02-05 15:41:06 -05:00

7 lines
145 B
Docker

FROM ubuntu:18.04
COPY *.deb /
RUN apt-get update && \
apt-get install -y /*.deb && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*