Skip to content

Commit 438ae4d

Browse files
Merge pull request #1 from BuilderIO/main
from upstream
2 parents b4e5da6 + b62a002 commit 438ae4d

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.5.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.4.0...v1.5.0) (2024-07-05)
2+
3+
4+
### Features
5+
6+
* git clone depth limit in docker ([87767db](https://github.com/BuilderIO/gpt-crawler/commit/87767dbda99b3259d44ec2c02dceb3a59bb2ca3c))
7+
18
# [1.4.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.3.0...v1.4.0) (2024-01-15)
29

310
### Bug Fixes

containerapp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesourc
2323
sudo apt-get install nodejs -y
2424

2525
# Install gpt-crawler
26-
RUN cd /home && git clone https://github.com/builderio/gpt-crawler && cd gpt-crawler && \
26+
RUN cd /home && git clone --depth=1 https://github.com/builderio/gpt-crawler && cd gpt-crawler && \
2727
npm i && \
2828
npx playwright install && \
2929
npx playwright install-deps
@@ -32,4 +32,4 @@ RUN cd /home && git clone https://github.com/builderio/gpt-crawler && cd gpt-cra
3232
RUN cd /home && mkdir data
3333

3434

35-
WORKDIR /home
35+
WORKDIR /home

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@builder.io/gpt-crawler",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"type": "module",
55
"bin": {
66
"gpt-crawler": "./dist/src/cli.js"

0 commit comments

Comments
 (0)