mirror of
https://github.com/zoriya/guessit.git
synced 2026-05-26 15:57:57 +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"]
|
|
|