Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
@@ -29,9 +29,9 @@ RUN apt install -y bash \
|
|
29 |
rm -rf /var/lib/apt/lists
|
30 |
|
31 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
|
36 |
|
37 |
# Set up a new user named "user" with user ID 1000
|
@@ -50,5 +50,5 @@ WORKDIR $HOME/app
|
|
50 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
51 |
COPY --chown=user . $HOME/app
|
52 |
|
53 |
-
CMD ["/bin/bash"]
|
54 |
-
|
|
|
29 |
rm -rf /var/lib/apt/lists
|
30 |
|
31 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
32 |
+
RUN git clone https://github.com/KONAKONA666/q8_kernels && \
|
33 |
+
cd q8_kernels && git submodule init && git submodule update && \
|
34 |
+
python3 setup.py install
|
35 |
|
36 |
|
37 |
# Set up a new user named "user" with user ID 1000
|
|
|
50 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
51 |
COPY --chown=user . $HOME/app
|
52 |
|
53 |
+
# CMD ["/bin/bash"]
|
54 |
+
CMD ["python3", "app/appy.py"]
|