forked from rttopo/librttopo
Add build instructions for build-test docker image
parent
c1ddb2392b
commit
6b90fda5bd
|
@ -32,3 +32,4 @@ rtin_wkt_parse.c
|
|||
rtin_wkt_parse.h
|
||||
rttopo_config.h
|
||||
rttopo_config.h.in
|
||||
!/docker/**/Makefile
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
FROM debian:sid
|
||||
RUN apt-get update -qq && apt-get install -y \
|
||||
build-essential autoconf libtool \
|
||||
zip git2cl libgeos-dev
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
DOCKER=docker
|
||||
REGISTRY=docker.kbt.io
|
||||
NAME=$(REGISTRY)/librttopo/build-test
|
||||
|
||||
all: debian-sid
|
||||
|
||||
push: debian-sid-push
|
||||
|
||||
debian-sid:
|
||||
$(DOCKER) build -t $(NAME):debian-sid - < Dockerfile.debian-sid
|
||||
|
||||
debian-sid-push:
|
||||
$(DOCKER) push $(NAME):debian-sid
|
Loading…
Reference in New Issue