Macedonian-ASR / Dockerfile
cigol123's picture
Update Dockerfile
d5cb879 verified
raw
history blame
143 Bytes
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]