Expose current git tag to Docker build, closes #399

This commit is contained in:
Simon Willison 2019-01-13 15:09:48 -08:00
commit a418c8b44f
2 changed files with 1 additions and 2 deletions

View file

@ -2,7 +2,7 @@ FROM python:3.6-slim-stretch as build
# Setup build dependencies
RUN apt update \
&& apt install -y python3-dev build-essential wget libxml2-dev libproj-dev libgeos-dev libsqlite3-dev zlib1g-dev pkg-config \
&& apt install -y python3-dev build-essential wget libxml2-dev libproj-dev libgeos-dev libsqlite3-dev zlib1g-dev pkg-config git \
&& apt clean