Spaces:
Running
Running
Commit
·
bedb9dd
1
Parent(s):
64761e8
end
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -17,9 +17,11 @@ ENV PATH="${HOME}/.local/bin:$PATH"
|
|
17 |
# Set the working directory
|
18 |
WORKDIR $HOME/app
|
19 |
|
20 |
-
# Copy the project files into the container
|
21 |
COPY --chown=user:user . .
|
22 |
|
|
|
|
|
|
|
23 |
EXPOSE 7860
|
24 |
|
25 |
# Start the Streamlit app
|
|
|
17 |
# Set the working directory
|
18 |
WORKDIR $HOME/app
|
19 |
|
|
|
20 |
COPY --chown=user:user . .
|
21 |
|
22 |
+
RUN pip install --upgrade pip && \
|
23 |
+
pip install -r requirements.txt
|
24 |
+
|
25 |
EXPOSE 7860
|
26 |
|
27 |
# Start the Streamlit app
|