mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-30 12:44:07 +00:00
Fix Dockerfile indentation
This commit is contained in:
parent
e1570a2a5b
commit
960ea5144b
11
Dockerfile
11
Dockerfile
|
@ -19,12 +19,12 @@ FROM ubuntu:15.10
|
||||||
|
|
||||||
MAINTAINER Marko Viitanen <fador@iki.fi>
|
MAINTAINER Marko Viitanen <fador@iki.fi>
|
||||||
|
|
||||||
# List of needed packages to be able to build kvazaar with autotools
|
# List of needed packages to be able to build kvazaar with autotools
|
||||||
ENV REQUIRED_PACKAGES automake autoconf libtool m4 build-essential git yasm pkgconf
|
ENV REQUIRED_PACKAGES automake autoconf libtool m4 build-essential git yasm pkgconf
|
||||||
|
|
||||||
# Run all the commands in one RUN so we don't have any extra history
|
# Run all the commands in one RUN so we don't have any extra history
|
||||||
# data in the image.
|
# data in the image.
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y $REQUIRED_PACKAGES \
|
&& apt-get install -y $REQUIRED_PACKAGES \
|
||||||
&& apt-get clean \
|
&& apt-get clean \
|
||||||
&& git clone --depth=1 git://github.com/ultravideo/kvazaar.git \
|
&& git clone --depth=1 git://github.com/ultravideo/kvazaar.git \
|
||||||
|
@ -38,5 +38,6 @@ MAINTAINER Marko Viitanen <fador@iki.fi>
|
||||||
&& apt-get clean autoclean \
|
&& apt-get clean autoclean \
|
||||||
&& apt-get autoremove -y \
|
&& apt-get autoremove -y \
|
||||||
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
|
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
|
||||||
|
|
||||||
ENTRYPOINT ["kvazaar"]
|
ENTRYPOINT ["kvazaar"]
|
||||||
CMD ["--help"]
|
CMD ["--help"]
|
||||||
|
|
Loading…
Reference in a new issue