containers/docker/dicom_indexer/Dockerfile

18 lines
577 B
Docker
Raw Normal View History

FROM alpine:3.19
2024-01-23 21:37:03 +00:00
RUN apk add --no-cache ca-certificates tzdata \
python3 py3-pip git openssh-client git-annex curl bzip2 bash glab\
&& cp /usr/share/zoneinfo/UTC /etc/localtime \
&& apk del tzdata \
&& rm -rf /tmp/* /var/cache/apk/*
RUN apk add --no-cache dcmtk --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
2024-01-23 21:37:03 +00:00
RUN pip install --break-system-packages --no-cache-dir datalad ssh_agent_setup python-gitlab pydicom pyyaml
ADD indexer /indexer
2024-01-31 16:04:50 +00:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT /entrypoint.sh
2024-01-23 21:37:03 +00:00
WORKDIR /work