We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ab5fc1 commit cf6573bCopy full SHA for cf6573b
examples/pip_docker/Dockerfile
@@ -0,0 +1,18 @@
1
+FROM python:3.10-slim
2
+
3
4
+# update apt pkgs, and install build-essential for ciso8601
5
+RUN apt-get update && \
6
+ apt-get -y upgrade && \
7
+ apt-get install -y build-essential && \
8
+ apt-get clean && \
9
+ rm -rf /var/lib/apt/lists/*
10
11
+# update certs used by Requests
12
+ENV CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
13
14
+WORKDIR /app
15
16
+COPY . /app
17
18
+RUN pip install stac-fastapi.elasticsearch==0.3.0
0 commit comments