Skip to content

Commit 9da8eb1

Browse files
committed
fix
1 parent 8a9a785 commit 9da8eb1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ RUN update-ca-certificates
1414
ENV CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
1515

1616
RUN python -m pip install -U pip
17+
RUN python -m pip install uvicorn
1718

1819
COPY runtimes/ /tmp/runtimes
19-
RUN python -m pip install /tmp/runtimes uvicorn --no-cache-dir --upgrade
20+
RUN python -m pip install /tmp/runtimes --no-cache-dir --upgrade
2021
RUN rm -rf /tmp/runtimes
2122

2223
ENV HOST 0.0.0.0
2324
ENV PORT 80
24-
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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42
app:
53
platform: linux/amd64

0 commit comments

Comments
 (0)