Files
NijiHolo_EN_ID_Bot/Dockerfile
T

20 lines
372 B
Docker
Raw Normal View History

2024-01-26 01:39:16 -08:00
FROM alpine:latest
2024-01-26 01:14:30 -08:00
# Install dependencies
2024-01-26 01:39:16 -08:00
RUN apk update && apk add --no-cache python3 py3-pip chromium chromium-chromedriver git
2024-01-26 01:14:30 -08:00
# Set working directory
WORKDIR /app
# Install pip dependencies
COPY requirements.txt .
RUN pip3 install -r requirements.txt
# Mount working directory
VOLUME ./run
# Copy source code
COPY . .
# Run the bot
CMD ["python3", "src/main.py"]