hackergeek98 commited on
Commit
20915bc
·
verified ·
1 Parent(s): c077338

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -1,6 +1,13 @@
1
  FROM python:3.10-slim
2
- RUN apt-get update && apt-get install -y git curl cmake build-essential
 
 
 
 
 
 
3
  WORKDIR /app
4
  COPY . .
5
  RUN pip install --no-cache-dir -r requirements.txt
 
6
  CMD ["python3", "app.py"]
 
1
  FROM python:3.10-slim
2
+
3
+ RUN apt-get update && apt-get install -y \
4
+ git \
5
+ curl \
6
+ cmake \
7
+ build-essential
8
+
9
  WORKDIR /app
10
  COPY . .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
+
13
  CMD ["python3", "app.py"]