diff --git a/Dockerfile b/Dockerfile index db062be..a08c424 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,10 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY src/ ./src/ +# Copy start script +COPY start.sh . +RUN chmod +x start.sh + # Create data directory for myorg repo RUN mkdir -p /data/myorg diff --git a/start.sh b/start.sh index 42ec5ca..6a6f94b 100755 --- a/start.sh +++ b/start.sh @@ -5,4 +5,4 @@ python -m src.main web & # Start Discord bot in foreground -#python -m src.main bot +python -m src.main bot