zlf18 commited on
Commit
4110344
·
verified ·
1 Parent(s): bef519c

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -19
Dockerfile DELETED
@@ -1,19 +0,0 @@
1
- # Start from a standard Python 3.9 base image
2
- FROM python:3.9
3
-
4
- # Set the working directory inside the container
5
- WORKDIR /code
6
-
7
- # Copy all your files (app.py, requirements.txt, etc.) into the container
8
- COPY . .
9
-
10
- # Install all the Python packages from your requirements.txt file
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # --- THIS IS THE MAGIC STEP ---
14
- # Run the skill generation script once during the build process.
15
- # This creates the validated_skills.json file inside the container.
16
- RUN python generate_skills.py
17
-
18
- # Finally, set the command to run your Gradio app when the container starts
19
- CMD ["gradio", "app.py"]