mirror of
https://github.com/zoriya/guessit.git
synced 2025-12-06 06:16:09 +00:00
14 lines
182 B
Docker
14 lines
182 B
Docker
FROM python:3.7-alpine
|
|
|
|
MAINTAINER Rémi Alvergnat <toilal.dev@gmail.com>
|
|
|
|
WORKDIR /root
|
|
|
|
COPY / /root/guessit/
|
|
WORKDIR /root/guessit/
|
|
|
|
RUN pip install -e .
|
|
|
|
ENTRYPOINT ["guessit"]
|
|
|