Skip to content

Commit

Permalink
Merge pull request #6 from gwax/gwax/filter-requirements
Browse files Browse the repository at this point in the history
Add binaries necessary for running standard filters
  • Loading branch information
Kwpolska authored Jun 26, 2022
2 parents daf56cd + 07200c1 commit 49f304b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
FROM python:3.10

# Add filter processing tools
RUN apt-get update \
&& export DEBIAN_FRONTEND=noninteractive \
&& apt-get install -y --no-install-recommends \
jpegoptim \
optipng \
tidy \
&& rm -rf /var/lib/apt/lists/*

COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 49f304b

Please sign in to comment.