initial commit 03332
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y \
|
|
16 |
# Install Python dependencies
|
17 |
RUN pip install --no-cache-dir -r requirements.txt
|
18 |
|
|
|
|
|
19 |
# Expose the port used by Flask
|
20 |
EXPOSE 7860
|
21 |
|
|
|
16 |
# Install Python dependencies
|
17 |
RUN pip install --no-cache-dir -r requirements.txt
|
18 |
|
19 |
+
COPY --chown=user . $HOME/app
|
20 |
+
|
21 |
# Expose the port used by Flask
|
22 |
EXPOSE 7860
|
23 |
|