SMS-spam-detection / Dockerfile
Sharathhebbar24's picture
Upload Dockerfile
3cefd90
raw
history blame
No virus
204 Bytes
FROM python:3.9-slim-bullseye
WORKDIR /
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . .
EXPOSE $PORT
CMD ["python", "server.py"]