Neurolingua's picture
Upload 7 files
7b79cc2 verified
raw
history blame
194 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
CMD ["python", "app.py"]