LucaParra/Delivery_app
0
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=*"]