Skip to content

Commit

Permalink
Dockerfile: simplify further, change entrypoint to vmaf CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
nilfm99 committed Mar 13, 2024
1 parent a1b9fc0 commit 2a6060a
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
FROM ubuntu:22.04

# setup timezone
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# get and install building tools
RUN apt-get update && \
apt-get install -y \
Expand All @@ -12,10 +8,7 @@ RUN apt-get update && \
nasm \
doxygen \
python3 \
python3-dev \
python3-pip \
python3-setuptools \
python3-wheel \
python3-venv

# retrieve source code
Expand All @@ -34,4 +27,4 @@ WORKDIR /vmaf

ENV PYTHONPATH=python

ENTRYPOINT [ "./python/vmaf/script/run_vmaf.py" ]
ENTRYPOINT [ "vmaf" ]

0 comments on commit 2a6060a

Please sign in to comment.