mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/file-setup.git
synced 2024-12-26 03:14:19 +00:00
25 lines
325 B
Docker
25 lines
325 B
Docker
FROM debian:10-slim
|
|
|
|
|
|
LABEL maintainer="inf_sfb1288@lists.uni-bielefeld.de"
|
|
|
|
|
|
ENV LANG=C.UTF-8
|
|
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
imagemagick \
|
|
python3.7 \
|
|
zip
|
|
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
COPY file_setup /usr/local/bin
|
|
|
|
|
|
ENTRYPOINT ["file_setup"]
|
|
CMD ["--help"]
|