mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/file-setup.git
synced 2024-12-26 03:14:19 +00:00
26 lines
454 B
Docker
26 lines
454 B
Docker
FROM debian:buster-slim
|
|
|
|
|
|
LABEL authors="Patrick Jentsch <p.jentsch@uni-bielefeld.de>, Stephan Porada <sporada@uni-bielefeld.de>"
|
|
|
|
|
|
ENV LANG=C.UTF-8
|
|
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends --yes \
|
|
imagemagick \
|
|
python3.7 \
|
|
zip \
|
|
&& rm -r /var/lib/apt/lists/*
|
|
|
|
|
|
RUN mv /etc/ImageMagick-6/policy.xml /etc/ImageMagick-6/policy.xml.bak
|
|
|
|
|
|
COPY file-setup /usr/local/bin
|
|
|
|
|
|
ENTRYPOINT ["file-setup"]
|
|
CMD ["--help"]
|