We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9a785 commit 9da8eb1Copy full SHA for 9da8eb1
Dockerfile
@@ -14,11 +14,12 @@ RUN update-ca-certificates
14
ENV CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
15
16
RUN python -m pip install -U pip
17
+RUN python -m pip install uvicorn
18
19
COPY runtimes/ /tmp/runtimes
-RUN python -m pip install /tmp/runtimes uvicorn --no-cache-dir --upgrade
20
+RUN python -m pip install /tmp/runtimes --no-cache-dir --upgrade
21
RUN rm -rf /tmp/runtimes
22
23
ENV HOST 0.0.0.0
24
ENV PORT 80
-CMD uvicorn titiler_md_demo.main:app --host ${HOST} --port ${PORT}```
25
+CMD uvicorn titiler_md_demo.main:app --host ${HOST} --port ${PORT}
docker-compose.yml
@@ -1,5 +1,3 @@
1
-version: '3'
2
-
3
services:
4
app:
5
platform: linux/amd64
0 commit comments