mirror of
https://gitlab.aachen.ccc.de/inventory/in.git
synced 2024-11-25 16:53:59 +01:00
10 lines
209 B
Docker
10 lines
209 B
Docker
FROM python:3.12-alpine3.19
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN python -m pip install -r requirements.txt
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "uvicorn", "main:app", "--use-colors", "--host", "0.0.0.0" ]
|
|
EXPOSE 8000
|