7 lines
186 B
Docker
7 lines
186 B
Docker
FROM python:alpine
|
|
COPY . /usr/src/app
|
|
WORKDIR /usr/src/app
|
|
RUN pip install --upgrade pip
|
|
RUN pip install -r requirements.txt
|
|
RUN python -m nltk.downloader all
|
|
CMD python3 -u ./script.py |