kimi / Dockerfile
remainsalways's picture
Update Dockerfile
2ac7721 verified
raw
history blame contribute delete
330 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY . /app
ENV PYTHONUNBUFFERED=1
RUN pip3 install --upgrade pip
RUN pip3 install --no-cache-dir --upgrade -r requirements.txt
RUN chmod -R 755 /app && \
chmod 777 /app/config.json /app/start.sh /app/Simp.py && \
chmod +x /app/start.sh /app/Simp.py
EXPOSE 6867
CMD ["./start.sh"]