CulturalVQABench / Dockerfile
BAJUKA's picture
Update Dockerfile
b0f5e4a verified
raw
history blame contribute delete
393 Bytes
FROM huggingface/competitions:latest
# Set the working directory (if not already set by the base image)
WORKDIR /app
# Copy your application files (optional if additional files are needed)
COPY . .
# Install Python dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
CMD uvicorn competitions.app:app --host 0.0.0.0 --port 7860 --workers 1