Create Dockerfile

This commit is contained in:
Richard Mwewa
2023-01-19 03:29:10 +02:00
committed by GitHub
parent 4c69f616e6
commit 5df653ccef

11
Dockerfile Normal file
View File

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