Skip to content

Commit

Permalink
wip: Provide MapServer deployement capabilities #50
Browse files Browse the repository at this point in the history
  • Loading branch information
Christophe Nouguier committed May 2, 2019
1 parent 98e1451 commit a743164
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build/mapserver.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
cd mapserver
docker build --build-arg TAG=$MAPSERVER_TAG -f dockerfile -t mapserver:$MAPSERVER_TAG .
docker tag mapserver:$MAPSERVER_TAG 127.0.0.1:5000/mapserver:$MAPSERVER_TAG
docker push 127.0.0.1:5000/mapserver:$MAPSERVER_TAG
8 changes: 8 additions & 0 deletions build/mapserver/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ARG TAG

FROM camptocamp/mapserver:$TAG

RUN apt-get -y update && apt-get -y install curl



0 comments on commit a743164

Please sign in to comment.