garvitcpp commited on
Commit
2dfa62e
·
verified ·
1 Parent(s): 0e02573

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.9
3
-
4
- # Set the working directory in the container
5
- WORKDIR /code
6
-
7
- # Copy the requirements file to the container
8
- COPY ./requirements.txt /code/requirements.txt
9
-
10
- # Install the dependencies
11
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
-
13
- # Copy the entire backend directory into the container
14
- COPY ./backend /code/backend
15
-
16
- # Set the command to run the app
17
- CMD ["python", "backend/app/app.py"]