Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -76,6 +76,12 @@ ENV MPLCONFIGDIR=/tmp
|
|
76 |
COPY --chown=user . $HOME/app
|
77 |
|
78 |
# Set the working directory to the user's home directory
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
WORKDIR $HOME/app
|
80 |
|
81 |
CMD ["python", "app.py"]
|
|
|
76 |
COPY --chown=user . $HOME/app
|
77 |
|
78 |
# Set the working directory to the user's home directory
|
79 |
+
WORKDIR $HOME/app/lib/common/libmesh/
|
80 |
+
RUN python setup.py build_ext --inplace
|
81 |
+
|
82 |
+
WORKDIR $HOME/app/lib/common/libvoxelize/
|
83 |
+
RUN python setup.py build_ext --inplace
|
84 |
+
|
85 |
WORKDIR $HOME/app
|
86 |
|
87 |
CMD ["python", "app.py"]
|