Create Dockerfile

This commit is contained in:
Richard Mwewa
2022-11-18 01:44:54 +02:00
parent 430845d008
commit fcade4b253

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# syntax=docker/dockerfile:1
FROM python:latest
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install build
RUN python -m build
RUN pip install dist/*.whl
ENTRYPOINT ["youtube_comment_scraper"]