-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow Instagram's specification change about CSRF token
FYI: - Fixed an issue with csrf token not being extracted correctly by anasomar1 · Pull Request #164 · dvingerh/PyInstaLive dvingerh/PyInstaLive#164
- Loading branch information
1 parent
a9ba994
commit 1f829f6
Showing
2 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
FROM mstmelody/python-ffmpeg:20201114221500 | ||
FROM mstmelody/python-ffmpeg:20240127133000 | ||
RUN apt-get update \ | ||
&& apt-get -y install git \ | ||
&& apt-get -y install --no-install-recommends git=1:2.25.1-1ubuntu3.11 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY ./Pipfile /workspace/ | ||
|
||
RUN pip --no-cache-dir install pipenv \ | ||
RUN pip3 --no-cache-dir install pipenv==2023.11.17 \ | ||
&& pipenv install --skip-lock --deploy --system \ | ||
&& pip uninstall -y pipenv virtualenv-clone virtualenv \ | ||
&& pip3 uninstall -y pipenv virtualenv-clone virtualenv \ | ||
&& rm -rf /workspace/* | ||
# Pipenv has bug that not install pakcage from Git repository into system. | ||
# pip has bug that not install pakcage from Git repository in Dockerfile. | ||
RUN git clone --branch 3.2.0 https://github.com/dvingerh/PyInstaLive.git /tmp/PyInstaLive \ | ||
&& cd /tmp/PyInstaLive \ | ||
&& python3 setup.py install | ||
ENTRYPOINT [ "pyinstalive", "-d" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters