textilestore / Dockerfile
ibrohm's picture
Upload Dockerfile with huggingface_hub
2376ace verified
raw
history blame contribute delete
266 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV BOT_TOKEN=${BOT_TOKEN}
ENV MONGO_URI=${MONGO_URI}
ENV DATABASE_NAME=${DATABASE_NAME}
ENV ADMIN_IDS=${ADMIN_IDS}
CMD ["python", "main.py"]