Expose current git tag to Docker build, closes #399

pull/364/merge 0.26.2
Simon Willison 2019-01-13 15:09:48 -08:00
rodzic c3a78eb05c
commit a418c8b44f
2 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -1,7 +1,6 @@
.DS_Store
.cache
.eggs
.git
.gitignore
.ipynb_checkpoints
.travis.yml

Wyświetl plik

@ -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