maloja/Dockerfile-pypi

32 lines
952 B
Plaintext
Raw Normal View History

FROM python:3-alpine
# Based on the work of Jonathan Boeckel <jonathanboeckel1996@gmail.com>
# https://gitlab.com/Joniator/docker-maloja
# https://github.com/Joniator
ARG MALOJA_RELEASE
WORKDIR /usr/src/app
2021-12-23 10:24:12 +03:00
# Copy needed information
COPY ./install ./install
RUN \
2021-12-23 10:48:39 +03:00
# Build dependencies (This will pipe all packages from the file)
sed 's/#.*//' ./install/dependencies_build.txt | xargs apk add --no-cache --virtual .build-deps && \
# Runtime dependencies (Same)
2021-12-23 20:13:36 +03:00
sed 's/#.*//' ./install/dependencies_run.txt | xargs apk add --no-cache && \
2021-12-23 10:24:12 +03:00
# PyPI install
pip3 install malojaserver==$MALOJA_RELEASE && \
# Remove build dependencies
apk del .build-deps
# expected behavior for a default setup is for maloja to "just work"
ENV MALOJA_SKIP_SETUP=yes
2021-12-31 06:22:19 +03:00
ENV MAGICK_HOME=/usr
EXPOSE 42010
# use exec form for better signal handling https://docs.docker.com/engine/reference/builder/#entrypoint
ENTRYPOINT ["maloja", "run"]