mirror of
https://github.com/bellingcat/instagram-location-search.git
synced 2026-06-08 02:28:29 +03:00
11 lines
215 B
Docker
11 lines
215 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 ["instagram_locations"] |