🚀 Add feature: Using MinIO as file storage for conversion both as input and output
This commit is contained in:
parent
afdfe1dbac
commit
579a3fe379
26 changed files with 16204 additions and 133 deletions
|
@ -7,11 +7,14 @@ WORKDIR /app
|
|||
# Expose the port the app will run on
|
||||
EXPOSE 8080
|
||||
|
||||
# Copy the current directory contents into the container
|
||||
COPY . .
|
||||
# Copy requirements.txt
|
||||
COPY requirements.txt .
|
||||
|
||||
# Install dependencies (ensure you have a requirements.txt file)
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy the current directory contents into the container
|
||||
COPY . .
|
||||
|
||||
# Command to run the app using Uvicorn
|
||||
CMD ["uvicorn", "main:app", "--reload", "--host", "0.0.0.0", "--port", "8080"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue