Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ dist
*.txt
*.srt
*.zip
venv
venv
debug
11 changes: 8 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
FROM python:3
FROM python:3.9-slim

WORKDIR /workspace/llvd

RUN pip install --upgrade pip setuptools

COPY ./ ./

RUN python setup.py install

WORKDIR /courses

ENTRYPOINT [ "llvd" ]
CMD [ "--help" ]
ENTRYPOINT ["llvd"]

CMD ["--help"]
2 changes: 1 addition & 1 deletion llvd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- encoding: utf-8 -*-
"""Linkedin Learning Video Downloader."""
__version__ = "3.0.8"
__version__ = "3.0.9"
Loading
Loading