mirror of
https://github.com/bellingcat/tiktok-hashtag-analysis.git
synced 2026-06-07 19:08:32 +03:00
12 lines
210 B
Docker
12 lines
210 B
Docker
# 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"]
|