mirror of
https://github.com/astefanutti/decktape.git
synced 2024-11-29 23:13:11 +03:00
Apply Docker conventions for Dockerfile
This commit is contained in:
parent
487c3ccc15
commit
7f5fdcd033
12
Dockerfile
12
Dockerfile
@ -1,11 +1,21 @@
|
||||
FROM debian:8
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y libwebp5 libfontconfig libjpeg62 libssl1.0.0 libicu52 curl
|
||||
|
||||
RUN apt-get install -y \
|
||||
curl \
|
||||
libwebp5 \
|
||||
libfontconfig \
|
||||
libjpeg62 \
|
||||
libssl1.0.0 \
|
||||
libicu52
|
||||
|
||||
COPY . /decktape
|
||||
|
||||
WORKDIR /decktape
|
||||
|
||||
RUN mkdir bin
|
||||
|
||||
RUN curl \
|
||||
-L https://astefanutti.github.io/decktape/downloads/phantomjs-linux-debian8-x86-64 \
|
||||
-o bin/phantomjs
|
||||
|
Loading…
Reference in New Issue
Block a user