Sentimen-Analysis / Dockerfile
noranisa's picture
Create Dockerfile
10160e9 verified
raw
history blame contribute delete
103 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]