aboutsummaryrefslogtreecommitdiff
path: root/auto-dvd-ripper/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'auto-dvd-ripper/Dockerfile')
-rw-r--r--auto-dvd-ripper/Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/auto-dvd-ripper/Dockerfile b/auto-dvd-ripper/Dockerfile
deleted file mode 100644
index 5994cb7..0000000
--- a/auto-dvd-ripper/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
1FROM alpine:edge
2LABEL maintainer="Mike Crute <mike@crute.us>"
3
4COPY handbrake-1.0.7-r5.apk /tmp/
5
6RUN \
7 echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories; \
8 apk --no-cache add su-exec dumb-init sg3_utils; \
9 apk --no-cache --allow-untrusted add /tmp/handbrake-1.0.7-r5.apk; \
10 addgroup -g 1000 -S alpine; \
11 adduser -u 1000 -S -H -D -G alpine alpine; \
12 addgroup alpine cdrom; \
13 rm -rf /root/.cache /tmp/*;
14
15ADD rip_dvd.sh /usr/bin/
16ADD entrypoint.sh /
17
18ENTRYPOINT ["/entrypoint.sh"]
19CMD ["/sbin/su-exec", "alpine", "/usr/bin/rip_dvd.sh"]