Skip to content
Snippets Groups Projects
Dockerfile 289 B
Newer Older
  • Learn to ignore specific revisions
  • Tobias Ullerich's avatar
    Tobias Ullerich committed
    FROM python:3.7-alpine
    
    
    Robert Goldmann's avatar
    Robert Goldmann committed
    RUN apk add ffmpeg
    
    Tobias Ullerich's avatar
    Tobias Ullerich committed
    RUN pip install pipenv
    COPY . /opt/SaveMyPlaylist
    
    WORKDIR /opt/SaveMyPlaylist
    RUN pipenv install
    RUN ln -s $(pipenv --venv) /opt/SaveMyPlaylist/mypipenv
    
    CMD [ "/opt/SaveMyPlaylist/mypipenv/bin/python", "/opt/SaveMyPlaylist/SaveMyPlaylist.py" ]