Add merge_images

This commit is contained in:
Stephan Porada
2020-01-07 15:13:10 +01:00
parent c0c4480890
commit 790f80f014
3 changed files with 106 additions and 0 deletions

23
Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM debian:9-slim
# Define image metadata
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
ENV LANG=C.UTF-8
# Install prerequisites
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
imagemagick \
python3.5 \
&& rm -rf /var/lib/apt/lists/*
# Install merge_images
COPY merge_images /usr/local/bin
ENTRYPOINT ["merge_images"]
CMD ["--help"]