service-gitit/Dockerfile

44 lines
1.1 KiB
Docker
Raw Normal View History

2019-02-19 10:05:42 +00:00
## Dockerfile for gitit
2023-08-28 15:44:14 +00:00
FROM debian:bookworm-slim
2019-02-19 10:05:42 +00:00
MAINTAINER Glenn Y. Rolland <glenux@glenux.net>
ENV DEBIAN_FRONTEND noninteractive
##
## make the "en_US.UTF-8" locale
##
RUN apt-get update \
&& apt-get install -y --no-install-recommends locales wget \
2019-02-19 10:05:42 +00:00
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
ENV LANG en_US.utf8
##
## install gitit
##
2023-08-28 15:47:18 +00:00
ENV GITIT_VERSION 0.15.1.0+dfsg-2+b4
2019-02-19 10:05:42 +00:00
# RUN wget --progress=dot:giga -O libghc-filestore-dev_0.6.5-2+b3_amd64.deb \
# http://ftp.us.debian.org/debian/pool/main/h/haskell-filestore/libghc-filestore-dev_0.6.5-2+b3_amd64.deb \
# && ( dpkg -i libghc-filestore-dev_0.6.5-2+b3_amd64.deb || true ) \
# && apt-get install -y -f \
# && rm -f libghc-filestore-dev_0.6.5-2+b3_amd64.deb
2019-02-19 10:05:42 +00:00
RUN apt-get update \
&& apt-cache policy gitit \
2019-02-19 10:13:47 +00:00
&& apt-get install -y --no-install-recommends \
mime-support gitit=$GITIT_VERSION \
openssh-client \
2019-02-19 10:05:42 +00:00
&& rm -rf /var/lib/apt/lists/*
VOLUME ["/data"]
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"]
WORKDIR /data
EXPOSE 5001
CMD ["gitit", "-f", "/data/gitit.conf"]