mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/file-setup.git
synced 2024-12-26 03:14:19 +00:00
26 lines
395 B
Docker
26 lines
395 B
Docker
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 \
|
|
zip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
# Install merge_images
|
|
COPY file_setup /usr/local/bin
|
|
|
|
|
|
ENTRYPOINT ["file_setup"]
|
|
CMD ["--help"]
|