mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
41 lines
924 B
Docker
41 lines
924 B
Docker
#
|
|
# Dockerfile for nodebb
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
ENV BB_VER=1.12.2
|
|
ENV BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz
|
|
ENV BB_SOURCE=/usr/src/nodebb
|
|
ENV BB_CONTENT=/var/lib/nodebb
|
|
|
|
WORKDIR $BB_SOURCE
|
|
VOLUME $BB_CONTENT
|
|
|
|
RUN set -ex \
|
|
&& apk add -U bash \
|
|
icu \
|
|
imagemagick \
|
|
nodejs \
|
|
nodejs-npm \
|
|
openssl \
|
|
&& apk add -t TMP build-base \
|
|
curl \
|
|
git \
|
|
icu-dev \
|
|
openssl-dev \
|
|
python \
|
|
tar \
|
|
&& curl -sSL $BB_URL | tar xz --strip 1 \
|
|
&& ./nodebb setup \
|
|
&& apk del TMP \
|
|
&& rm -rf /tmp/npm* \
|
|
/var/cache/apk/*
|
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
EXPOSE 4567
|
|
CMD ["./nodebb", "start"]
|