mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
21 lines
370 B
Docker
21 lines
370 B
Docker
|
#
|
||
|
# Dockerfile for cronicle
|
||
|
#
|
||
|
|
||
|
FROM node:alpine
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN set -xe \
|
||
|
&& apk add --no-cache curl tar \
|
||
|
&& curl -sSL https://raw.githubusercontent.com/jhuckaby/Cronicle/master/bin/install.js | node
|
||
|
|
||
|
WORKDIR /opt/cronicle
|
||
|
VOLUME /opt/cronicle/conf
|
||
|
|
||
|
ENV CRONICLE_foreground=1
|
||
|
|
||
|
EXPOSE 3012
|
||
|
|
||
|
ENTRYPOINT ["bin/control.sh"]
|
||
|
CMD ["start"]
|