view docker/Dockerfile.backend @ 1865:ce80ab444e3b

client: translations: recover old de_AT and SK versions * Re-adding de_AT and sk_SK translations from 1885:1583cbca8ec5. They got lost after a make translations, probably because rev1885 had de_AT which was not properly merged, containing merge markers and thus broke its syntax.
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 17 Jan 2019 15:54:15 +0100
parents 5d9e0adf73d1
children 153c77e529dc
line wrap: on
line source

FROM ubuntu:bionic
LABEL authors="tom.gottfried@intevation.de"
LABEL description="Contains software from gemma, for right holders and\
 licensing infos, see https://hg.intevation.de/gemma ."

RUN sed -i 's/\(deb.*\)$/\1 universe/' /etc/apt/sources.list

RUN apt-get update &&\
    apt-get -y install --no-install-recommends \
            make git golang-go \
            ca-certificates

WORKDIR /opt/gemma

# Copy only backend stuff
COPY 3rdpartylibs.sh ./
COPY pkg ./pkg/
COPY cmd ./cmd/
COPY Makefile ./
COPY example_conf.toml ./

RUN make install

EXPOSE 8000

CMD ["/usr/local/bin/gemma", "-c", "/opt/gemma/example_conf.toml"]