HemanthR007 commited on
Commit
d542a3d
·
verified ·
1 Parent(s): 7beb0de

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,7 +1,5 @@
1
  FROM python:3.11-slim
2
 
3
- # Set working directory
4
- WORKDIR /code
5
 
6
  # Install system dependencies
7
  RUN apt-get update && apt-get install -y \
@@ -24,6 +22,9 @@ RUN pip install --no-cache-dir -r requirements.txt
24
  COPY . /app
25
  WORKDIR /app
26
 
 
 
 
27
  # Expose port
28
  EXPOSE 7860
29
 
 
1
  FROM python:3.11-slim
2
 
 
 
3
 
4
  # Install system dependencies
5
  RUN apt-get update && apt-get install -y \
 
22
  COPY . /app
23
  WORKDIR /app
24
 
25
+ # Copy app
26
+ COPY . .
27
+
28
  # Expose port
29
  EXPOSE 7860
30