FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-tracing-demo/Dockerfile at main · softwarebloat/python-tracing-demo · GitHub
softwarebloat
/
python-tracing-demo
Public
Notifications
You must be signed in to change notification settings
Fork
12
Star
57
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-tracing-demo
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (12 loc) · 495 Bytes
Breadcrumbs
python-tracing-demo
/
Dockerfile
Copy path
File metadata and controls
19 lines (12 loc) · 495 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM
tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim
ENV
PATH=
"/root/.local/bin:$PATH"
RUN
apt-get update && apt-get -y install curl
RUN
curl -sSL https://install.python-poetry.org | python && \
ln -s $HOME/.poetry/bin/poetry /usr/bin/poetry && \
poetry --version && \
poetry config virtualenvs.create false
WORKDIR
/app
COPY
poetry.lock pyproject.toml ./
RUN
poetry install --only main --no-interaction --no-root
COPY
python_tracing_demo/ ./
ENV
PORT=8080
Back
|
FazBrowse Home
|
New Git URL