spanish-voice / Dockerfile
JacoboMata's picture
Primer commit - Implementaci贸n App
50e7df1
raw
history blame
150 Bytes
FROM python:3.9
WORKDIR /code
COPY ./ /code/
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "app.py"]