Sing-plus / Dockerfile
PPJiNZ's picture
Update Dockerfile
ad2fa80 verified
raw
history blame contribute delete
238 Bytes
FROM python:3.10
WORKDIR /home/user/app
# ติดตั้ง rubberband-cli
RUN apt-get update && apt-get install -y rubberband-cli
COPY . /home/user/app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]