We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b0f62b commit 9e18e97Copy full SHA for 9e18e97
1 file changed
pygeoapi/docker/Dockerfile.pygeoapi
@@ -21,6 +21,7 @@ RUN apt-get update \
21
zlib1g-dev \
22
libprotobuf-dev \
23
protobuf-compiler \
24
+ python3-venv \
25
&& git clone https://github.com/mapbox/tippecanoe.git /tmp/tippecanoe \
26
&& cd /tmp/tippecanoe \
27
&& make -j \
@@ -30,6 +31,10 @@ RUN apt-get update \
30
31
&& apt-get clean \
32
&& rm -rf /var/lib/apt/lists/*
33
34
+RUN python3 -m venv /opt/venv \
35
+ && /opt/venv/bin/python -m pip install --upgrade pip setuptools wheel
36
+ENV PATH="/opt/venv/bin:$PATH"
37
+
38
# Install Application Insights for Python
39
RUN pip install opencensus-ext-azure opencensus-ext-flask opencensus-ext-requests
40
0 commit comments