Gregniuki commited on
Commit
a08e7fa
·
verified ·
1 Parent(s): c3df806

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 Gradio
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