CoolFace
Apppublic

amaulf/getaround-pricing-api

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
1# Use Python base image2FROM python:3.93 4# Set working directory inside container5WORKDIR /app6 7# Copy requirements file8COPY requirements.txt .9 10# Install Python dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13# Copy all files to container14COPY . .15 16# Expose port 7860 (Hugging Face default)17EXPOSE 786018 19# Command to run the app on port 786020CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]