cybertool-api / Dockerfile
alphg's picture
Update Dockerfile
b2a5460 verified
raw
history blame
246 Bytes
FROM python:3.8
WORKDIR /app
COPY . /app
RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN apt-get update && apt-get install -y libreoffice && apt-get install -y ffmpeg
EXPOSE 7860
ENV NAME World
CMD ["python", "app.py"]