Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -79,7 +79,7 @@ RUN chown -R root:root /app/node_modules /app/home/node_modules
|
|
| 79 |
# Download and unzip the GitHub repo instead of using git clone
|
| 80 |
# Use a clean /build path to extract and copy contents
|
| 81 |
RUN mkdir -p /app /build && \
|
| 82 |
-
curl -L -o /tmp/reikerpy.zip https://github.com/
|
| 83 |
unzip /tmp/reikerpy.zip -d /build && \
|
| 84 |
cp -r /build/reikerpy-main/* /app/ && \
|
| 85 |
rm -rf /tmp/reikerpy.zip /build
|
|
|
|
| 79 |
# Download and unzip the GitHub repo instead of using git clone
|
| 80 |
# Use a clean /build path to extract and copy contents
|
| 81 |
RUN mkdir -p /app /build && \
|
| 82 |
+
curl -L -o /tmp/reikerpy.zip https://github.com/reaperofssa/reikerpy/archive/refs/heads/main.zip && \
|
| 83 |
unzip /tmp/reikerpy.zip -d /build && \
|
| 84 |
cp -r /build/reikerpy-main/* /app/ && \
|
| 85 |
rm -rf /tmp/reikerpy.zip /build
|