anydlbot / Dockerfile
imseldrith's picture
Update Dockerfile
33d6c74
raw
history blame
437 Bytes
FROM breakdowns/mega-sdk-python:latest
WORKDIR /app
RUN chmod 777 /app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY . .
#set a default command
CMD ["python" ,"bot.py"]
#FROM python:3.9
#WORKDIR /app
#RUN chmod 777 /app
#COPY ./requirements.txt /code/requirements.txt
#RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
#COPY . .
#CMD ["python3" ,"bot.py"]# "--host", "0.0.0.0", "--port", "7860"]