Spaces:
Sleeping
Sleeping
File size: 385 Bytes
9c0cec7 66f8fc1 9c0cec7 66f8fc1 9c0cec7 66f8fc1 9c0cec7 66f8fc1 9c0cec7 66f8fc1 9c0cec7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use the Inno Setup Docker image
FROM amake/innosetup
# Set the working directory
WORKDIR /app
# Copy your main.py and any other necessary files
COPY main.py .
COPY requirements.txt .
# Install Flask and other Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the necessary port
EXPOSE 7860
# Command to run your Flask app
CMD ["python", "main.py"]
|