Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,8 +4,8 @@ FROM python:3.9-slim
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install Flask and
|
8 |
-
RUN pip install flask gradio
|
9 |
|
10 |
# Clone the Mario game repository
|
11 |
RUN apt-get update && apt-get install -y git
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install Flask, Gradio, and flask-cors
|
8 |
+
RUN pip install flask gradio flask-cors
|
9 |
|
10 |
# Clone the Mario game repository
|
11 |
RUN apt-get update && apt-get install -y git
|