Removed obsolete dockerfile
This commit is contained in:
parent
c13048eca6
commit
656373d9da
19
dockerfile
19
dockerfile
|
|
@ -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"]
|
||||
Loading…
Reference in New Issue
Block a user