Spaces:
Sleeping
Sleeping
Commit
·
6000f56
1
Parent(s):
33821de
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,9 @@ RUN git clone https://github.com/logspace-ai/langflow.git $LANGFLOW_HOME \
|
|
| 16 |
WORKDIR $LANGFLOW_HOME
|
| 17 |
COPY . .
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 19 |
# Update the config.yaml file, build and install the langflow package
|
| 20 |
RUN make build && pip install dist/*.tar.gz
|
| 21 |
|
|
|
|
| 16 |
WORKDIR $LANGFLOW_HOME
|
| 17 |
COPY . .
|
| 18 |
|
| 19 |
+
# Create logs directory and set permissions
|
| 20 |
+
RUN mkdir logs && chmod 777 logs
|
| 21 |
+
|
| 22 |
# Update the config.yaml file, build and install the langflow package
|
| 23 |
RUN make build && pip install dist/*.tar.gz
|
| 24 |
|