diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..390c9d2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# 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 ["tiktok_hashtag_analysis"]