forked from filipg/gonito
37 lines
1014 B
Docker
37 lines
1014 B
Docker
FROM fpco/stack-build:lts-12.26 AS gonito-build
|
|
|
|
MAINTAINER Filip Gralinski <filipg@ceti.pl>
|
|
|
|
WORKDIR /root/
|
|
|
|
RUN apt-get -y update && apt-get -y install libfcgi-dev && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN git clone git://gonito.net/geval && cd geval && git reset --hard a49abb560bd5e5f11f291f50176934fef5352c6c
|
|
RUN git clone git://gonito.net/gonito && cd gonito && git reset --hard 0bad9b3e582c4807cf9bf1c70eae53489a1302a4
|
|
|
|
|
|
WORKDIR gonito
|
|
|
|
RUN stack install && rm -rf /root/.stack
|
|
|
|
FROM ubuntu:16.04 AS gonito-run
|
|
|
|
RUN apt-get -y update && apt-get -y install git git-annex libcairo2 libpq5 locales && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
|
|
locale-gen
|
|
|
|
ENV LANG=en_US.UTF-8 \ LANGUAGE=en_US \ LC_ALL=en_US.UTF-8
|
|
|
|
RUN mkdir /gonito
|
|
|
|
WORKDIR /gonito
|
|
|
|
COPY --from=gonito-build /root/.local/bin/gonito-bin ./
|
|
|
|
COPY --from=gonito-build /root/gonito/static static
|
|
|
|
COPY --from=gonito-build /root/gonito/config config
|
|
|
|
CMD ./gonito-bin
|