aboutsummaryrefslogtreecommitdiff
path: root/feh/Dockerfile
blob: f23483ad07ffd1076ab980fdd316430156cb40b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:16.04

RUN export DEBIAN_FRONTEND=noninteractive && \
    apt-get update && \
    apt-get install -y apt-utils feh

RUN \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* && \
    rm -rf /tmp/*

ENTRYPOINT [ "/usr/bin/feh" ]