1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/nodebb/Dockerfile

46 lines
1.0 KiB
Docker
Raw Normal View History

2016-01-15 23:19:42 +00:00
#
# Dockerfile for nodebb
#
2021-04-22 02:55:12 +00:00
FROM alpine:3
MAINTAINER EasyPi Software Foundation
2016-01-15 23:19:42 +00:00
2022-07-13 03:16:07 +00:00
ARG BB_VER=2.2.4
ARG BB_URL=https://github.com/NodeBB/NodeBB/archive/v$BB_VER.tar.gz
ARG BB_DIR=/opt/nodebb
2016-01-15 23:19:42 +00:00
2022-01-17 08:53:36 +00:00
WORKDIR $BB_DIR
2016-01-15 23:19:42 +00:00
RUN set -ex \
&& apk add -U bash \
2018-08-18 21:48:40 +00:00
icu \
2016-01-15 23:19:42 +00:00
imagemagick \
nodejs \
2022-01-16 04:13:12 +00:00
npm \
2016-01-15 23:19:42 +00:00
openssl \
&& apk add -t TMP build-base \
curl \
git \
2018-08-18 21:48:40 +00:00
icu-dev \
2016-01-15 23:19:42 +00:00
openssl-dev \
2022-01-16 04:13:12 +00:00
python3 \
2016-01-15 23:19:42 +00:00
tar \
&& curl -sSL $BB_URL | tar xz --strip 1 \
2022-07-13 03:16:07 +00:00
&& curl -sSL https://github.com/NodeBB/NodeBB/raw/v$BB_VER/install/package.json > package.json \
&& npm install --production \
2016-01-15 23:19:42 +00:00
&& apk del TMP \
&& rm -rf /tmp/npm* \
/var/cache/apk/*
2022-01-17 08:53:36 +00:00
VOLUME $BB_DIR/config \
$BB_DIR/build \
$BB_DIR/public/uploads
2022-07-13 03:16:07 +00:00
ENV NODE_ENV=production
2022-01-17 08:53:36 +00:00
ENV silent=false
ENV daemon=false
2016-01-15 23:19:42 +00:00
EXPOSE 4567
2022-01-17 08:53:36 +00:00
CMD ["./nodebb", "--config", "config/config.json", "start"]