Skip to content

Commit

Permalink
catchup
Browse files Browse the repository at this point in the history
  • Loading branch information
Brettanda committed Jul 25, 2024
1 parent 218f611 commit b5c87b0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ README.md
.github/
__pycache__/
wandb/
hidden/
hidden/
ollama/
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,5 @@ i18n/locales/
i18n/en/commands.json

migrations/*.json
!migrations/V*__*.sql
!migrations/V*__*.sql
ollama/
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ ENV PYTHONDONTWRITEBYTECODE=1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1

RUN apt-get update && apt-get install -y ffmpeg
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
apt-get update && apt-get install -y ffmpeg

WORKDIR /usr/src/app

Expand Down
3 changes: 3 additions & 0 deletions docker-compose.canary.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
include:
- docker-compose.yml

services:
bot:
entrypoint: sh -c "exec python3 index.py --canary"

0 comments on commit b5c87b0

Please sign in to comment.