mirror of
https://github.com/astefanutti/decktape.git
synced 2024-12-13 10:20:46 +03:00
560cfb71c6
HTTPS protocol does not work anymore with Gandi hosting
32 lines
605 B
Docker
32 lines
605 B
Docker
FROM debian:8.3
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y \
|
|
curl \
|
|
libwebp5 \
|
|
libfontconfig \
|
|
libjpeg62 \
|
|
libssl1.0.0 \
|
|
libicu52
|
|
|
|
WORKDIR /decktape
|
|
|
|
# Copy each directory individually as Docker Hub does not take .dockerignore into account for the moment
|
|
# COPY . .
|
|
COPY libs libs/
|
|
COPY plugins plugins/
|
|
COPY decktape.js ./
|
|
COPY phantomjs.json ./
|
|
|
|
RUN mkdir bin
|
|
|
|
RUN curl -k \
|
|
-L http://astefanutti.github.io/decktape/downloads/phantomjs-linux-debian8-x86-64 \
|
|
-o bin/phantomjs
|
|
|
|
RUN chmod +x bin/phantomjs
|
|
|
|
ENTRYPOINT ["/decktape/bin/phantomjs", "decktape.js"]
|
|
CMD ["-h"]
|