view Dockerfile @ 347:72c76ab112e9

Compressing the namespaces in the WFS proxy is broken atm. So deactivate it.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 06 Aug 2018 16:53:45 +0200
parents 1a2dfd9351e9
children 6d145ee0a097
line wrap: on
line source

FROM ubuntu:bionic
LABEL authors="tom.gottfried@intevation.de"

RUN sed -i 's/$/ universe/' /etc/apt/sources.list

RUN apt-get update &&\
    apt-get -y install --no-install-recommends \
            make git golang-go golang-github-gorilla-context-dev

WORKDIR /opt/gemma

# Copy only backend stuff
COPY 3rdpartylibs.sh ./
COPY auth ./auth/
COPY cmd ./cmd/
COPY config ./config/
COPY controllers ./controllers/
COPY Makefile ./
COPY example_conf.toml ./

RUN make gemma && mkdir /opt/bin && mv cmd/gemma/gemma /opt/bin/

EXPOSE 8000

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

# Run with e.g.
# docker build -t gemma_backend .
# docker run --name gemma_backend -v $PWD:/opt/gemma -d -p 8200:8000 \
#            --link your_gemma_db:gemma_db gemma_backend
#
# To rebuild inside the container:
# ln -sf /opt/gemma/cmd/gemma/gemma /opt/bin/gemma
# make gemma