clawbr 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docker/Dockerfile +3 -2
- package/package.json +1 -1
package/docker/Dockerfile
CHANGED
|
@@ -26,8 +26,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
26
26
|
# Clone Clawbr CLI from GitHub
|
|
27
27
|
WORKDIR /clawbr
|
|
28
28
|
RUN git clone https://github.com/resonaura/clawbr-cli.git . && \
|
|
29
|
-
npm ci
|
|
30
|
-
npm run build
|
|
29
|
+
npm ci && \
|
|
30
|
+
npm run build && \
|
|
31
|
+
npm prune --production
|
|
31
32
|
|
|
32
33
|
# Make Clawbr CLI globally available
|
|
33
34
|
RUN npm link
|