Files
youtube-comment-scraper/Dockerfile
2022-11-18 01:44:54 +02:00

15 lines
213 B
Docker

# 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"]