first commit
This commit is contained in:
parent
5c5d88c92f
commit
eb4f62c56d
41 changed files with 3851 additions and 19 deletions
15
docker_svc/agent/Dockerfile
Normal file
15
docker_svc/agent/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
FROM python:3.11-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
|
||||
RUN apk add --no-cache build-base \
|
||||
&& pip install --no-cache-dir -r requirements.txt \
|
||||
&& apk del build-base
|
||||
|
||||
COPY app .
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
Loading…
Add table
Add a link
Reference in a new issue