# syntax=docker/dockerfile:1

FROM python:latest

WORKDIR /app

COPY . .

RUN pip install --upgrade pip && pip install build && python -m build && pip install dist/*.whl

ENTRYPOINT ["reddit_post_scraping_tool"]