Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
add ffmpeg to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed May 7, 2021
1 parent 73059c3 commit bba6057
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]


## [0.2.1] - 2021-05-06
### Fixed
- Missing dependency in Dockerfile.


## [0.2.0] - 2021-05-06
### Added
- /gifify command
Expand Down
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ WORKDIR /app
ENV PYTHON_BIN python3

RUN \
apt-get update && \
echo "**** install runtime packages ****" && \
apt-get install -y --no-install-recommends \
ffmpeg \
&& \
echo "**** install pip packages ****" && \
pip3 install -U pip setuptools wheel && \
pip3 install -r requirements.txt && \
Expand Down

0 comments on commit bba6057

Please sign in to comment.