Skip to content

Commit

Permalink
added Dockerfile (for real now)
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Jul 22, 2022
1 parent 8b905e5 commit 0c76d3d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
FROM alpine:latest
#VERSION can be:
# - stable: builds latest stable versions from source (default)
# - distro: uses packages as provided by Alpine Linux (may be slightly out of date)
# - devel: latest development version (git master/main branch)
ARG VERSION="stable"
LABEL org.opencontainers.image.authors="Maarten van Gompel <proycon@anaproy.nl>"
LABEL description="FoLiA utilities"

RUN mkdir -p /data
RUN mkdir -p /usr/src/foliautils
COPY . /usr/src/foliautils

RUN if [ "$VERSION" = "distro" ]; then \
rm -Rf /usr/src/foliautils &&\
echo -e "----------------------------------------------------------\nNOTE: Installing latest release as provided by Alpine package manager.\nThis version may diverge from the one in the git master tree or even from the latest release on github!\nFor development, build with --build-arg VERSION=development.\n----------------------------------------------------------\n" &&\
apk update && apk add foliautils; \
else \
PACKAGES="libtar libbz2 icu-libs libxml2 libxslt libexttextcat libgomp libstdc++" &&\
BUILD_PACKAGES="build-base autoconf-archive autoconf automake libtool libtar-dev bzip2-dev icu-dev libxml2-dev libxslt-dev libexttextcat-dev git" &&\
apk add $PACKAGES $BUILD_PACKAGES &&\
cd /usr/src/ && ./foliautils/build-deps.sh &&\
cd foliautils && sh ./bootstrap.sh && ./configure && make && make install &&\
apk del $BUILD_PACKAGES && rm -Rf /usr/src; \
fi

WORKDIR /

ENTRYPOINT [ "ash" ]

0 comments on commit 0c76d3d

Please sign in to comment.