Removed obsolete dockerfile

This commit is contained in:
AzureAD\AniketSaha 2025-07-10 10:55:16 +02:00
parent c13048eca6
commit 656373d9da

View File

@ -1,19 +0,0 @@
# Dockerfile
FROM python:3.11-slim
WORKDIR /app
# Install required packages
RUN apt-get update && apt-get install -y \
iproute2 \
can-utils \
libpython3-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy all application files
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]