Files
instagram-location-search/Dockerfile
2023-01-10 21:34:28 +02:00

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