Skip to content

Commit

Permalink
fix: also install the typescript package...
Browse files Browse the repository at this point in the history
  • Loading branch information
soni801 committed Oct 8, 2024
1 parent 8047d8d commit a3c8770
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM oven/bun:canary
WORKDIR /data

COPY . .
RUN bun install --production
RUN bun install
RUN bun run build

CMD ["bun", "run", "start"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ If you don't want to use Docker, you can run Soni Bot locally with Bun:
This can optionally be changed to a different database engine by editing `ormconfig.ts`.
3. Install the dependencies and build Soni Bot
```shell
bun install --production
bun install
bun run build
```
4. Run Soni Bot!
Expand Down Expand Up @@ -74,7 +74,7 @@ To start the container, run the same command as the first time you launched it.
With a **manual installation**, you'll have to stop the bun process, pull the changes, rebuild and restart:
```shell
git pull
bun install --production # make sure that all packages are up to date
bun install # make sure that all packages are up to date
bun run build
bun run start
```
Expand Down

0 comments on commit a3c8770

Please sign in to comment.