Skip to content

Commit

Permalink
Merge pull request #1 from BuilderIO/main
Browse files Browse the repository at this point in the history
from upstream
  • Loading branch information
robin-collins authored Jul 6, 2024
2 parents b4e5da6 + b62a002 commit 438ae4d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.5.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.4.0...v1.5.0) (2024-07-05)


### Features

* git clone depth limit in docker ([87767db](https://github.com/BuilderIO/gpt-crawler/commit/87767dbda99b3259d44ec2c02dceb3a59bb2ca3c))

# [1.4.0](https://github.com/BuilderIO/gpt-crawler/compare/v1.3.0...v1.4.0) (2024-01-15)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions containerapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesourc
sudo apt-get install nodejs -y

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


WORKDIR /home
WORKDIR /home
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@builder.io/gpt-crawler",
"version": "1.4.0",
"version": "1.5.0",
"type": "module",
"bin": {
"gpt-crawler": "./dist/src/cli.js"
Expand Down

0 comments on commit 438ae4d

Please sign in to comment.