Spaces:
Running
Running
File size: 770 Bytes
ff876f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
FROM python:3.12-slim-bookworm
# Create app user and directory
RUN useradd -m appuser && \
mkdir /app && \
chown appuser:appuser /app
WORKDIR /app
# Install build dependencies and git, clone repo (keeping build dependencies)
RUN apt-get update && \
apt-get install -y --no-install-recommends git gcc python3-dev && \
git clone https://github.com/SeoulDroid99100/Manhwa-Bot . && \
rm -rf /var/lib/apt/lists/*
# Switch to appuser and set up virtual environment
USER appuser
RUN python -m venv venv
ENV PATH="/app/venv/bin:$PATH"
# Create log directory with write permissions
USER root
RUN mkdir -p /app/logs && chmod 777 /app/logs
USER appuser
RUN pip install -r requirements.txt
EXPOSE 7860
#Sex test
# Run from module
CMD ["python3","main.py"] |