You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
634 B
17 lines
634 B
FROM ubuntu:16.04
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
RUN dpkg --add-architecture i386 && \
|
|
apt-get update && \
|
|
apt-get install sudo wget ca-certificates --no-install-recommends -y && \
|
|
mkdir /opt/setup /usr/share/desktop-directories/ -p && \
|
|
cd /opt/setup && \
|
|
wget -O smart.tar.gz https://downloads.smarttech.com/software/nb/11linux/11_3sp4/debian/smart_software_deb_archive.tar.gz && \
|
|
tar -xvf smart.tar.gz && \
|
|
( dpkg -i ./*.deb; true ) && \
|
|
apt-get install -yf && \
|
|
cd / && \
|
|
rm -rf /opt/setup && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
CMD bash /entrypoint.sh |