7 lines
145 B
Docker
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/*
|