Spaces:
Runtime error
Runtime error
Commit
·
89b4793
1
Parent(s):
567db95
Install git
Browse files- .devcontainer/Dockerfile +7 -0
.devcontainer/Dockerfile
CHANGED
@@ -4,6 +4,13 @@ WORKDIR /app
|
|
4 |
|
5 |
COPY . /app/
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
RUN pip install -r /app/requirements.txt
|
8 |
|
9 |
EXPOSE 8501
|
|
|
4 |
|
5 |
COPY . /app/
|
6 |
|
7 |
+
RUN apt-get update && apt-get install -y \
|
8 |
+
build-essential \
|
9 |
+
curl \
|
10 |
+
software-properties-common \
|
11 |
+
git \
|
12 |
+
&& rm -rf /var/lib/apt/lists/*
|
13 |
+
|
14 |
RUN pip install -r /app/requirements.txt
|
15 |
|
16 |
EXPOSE 8501
|