Skip to content
This repository was archived by the owner on Sep 27, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM python:3.8-slim

WORKDIR /app

COPY ./ /app/

RUN \
# Install dependencies
apt update; \
apt install ffmpeg -y; \
# Install python modules
pip3 install --no-cache-dir -r /app/config/requirements.txt

VOLUME [ "/app/config" ]

CMD [ "python3","-u", "/app/run.py"]
9 changes: 9 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: "3.3"

services:
app:
build: ./
container_name: dingolingo
volumes:
- './config/:/app/config'
restart: unless-stopped