2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-27 15:41:38 +01:00

fix nodebb

This commit is contained in:
kev
2016-01-16 12:07:47 +08:00
parent d852efc40a
commit 6c8b38b756
10 changed files with 110 additions and 33 deletions

43
nodebb/Dockerfile.debian Normal file
View File

@@ -0,0 +1,43 @@
#
# Dockerfile for nodebb
#
FROM debian
MAINTAINER kev <noreply@datageek.info>
ENV BB_VER 0.9.3
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 \
&& apt-get update \
&& apt-get install -y build-essential \
curl \
git \
imagemagick \
libssl1.0.0 \
libssl-dev \
python \
&& curl -sSL https://deb.nodesource.com/setup_4.x | bash - \
&& apt-get install -y nodejs \
&& curl -sSL $BB_URL | tar xz --strip 1 \
&& sed -i '/"bufferutil": {/,/},/d; /"utf-8-validate": {/,/},/d' npm-shrinkwrap.json \
&& npm install --production \
&& npm cache clean \
&& apt-get remove -y build-essential \
curl \
git \
libssl-dev \
python \
&& rm -rf /tmp/npm* \
/var/cache/apt/*
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 4567
CMD ["npm", "start"]