Spaces:
Running
Running
Francesco Capuano
commited on
Commit
·
c69b777
1
Parent(s):
5e0417a
refactor: Update Dockerfile to install dependencies from requirements.txt
Browse files- Dockerfile +1 -1
- requirements.txt +5 -0
Dockerfile
CHANGED
@@ -6,7 +6,7 @@ WORKDIR /app
|
|
6 |
COPY . .
|
7 |
|
8 |
# Install dependencies
|
9 |
-
RUN pip install
|
10 |
|
11 |
# Expose the port that greeter_server listens on
|
12 |
EXPOSE 8080
|
|
|
6 |
COPY . .
|
7 |
|
8 |
# Install dependencies
|
9 |
+
RUN pip install -r requirements.txt
|
10 |
|
11 |
# Expose the port that greeter_server listens on
|
12 |
EXPOSE 8080
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
coverage>=4.0
|
2 |
+
cython>=3.0.0
|
3 |
+
protobuf>=6.30.0,<7.0.0
|
4 |
+
wheel>=0.29
|
5 |
+
grpcio
|