CoolFace
Apppublic

LucaParra/Delivery_app

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.102 3# Set the working directory4WORKDIR /app5 6# Copy the requirements file and install dependencies7COPY requirements.txt .8RUN pip install --no-cache-dir -r requirements.txt9 10# Copy the rest of the application code11COPY app.py .12 13# Expose the port on which the app will run14EXPOSE 786015 16# Command to run the application17CMD ["panel", "serve", "app.py", "--port", "7860", "--allow-websocket-origin=*"]