1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/nodebb/Dockerfile.debian

44 lines
1.1 KiB
Docker
Raw Normal View History

2016-01-16 04:07:47 +00:00
#
# Dockerfile for nodebb
#
2022-01-16 03:36:41 +00:00
FROM debian:bullseye
MAINTAINER EasyPi Software Foundation
2016-01-16 04:07:47 +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
2019-10-01 08:17:49 +00:00
ENV BB_SOURCE=/usr/src/nodebb
ENV BB_CONTENT=/var/lib/nodebb
2016-01-16 04:07:47 +00:00
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 \
2019-10-01 08:17:49 +00:00
&& curl -sSL https://deb.nodesource.com/setup_10.x | bash - \
2016-01-16 04:07:47 +00:00
&& apt-get install -y nodejs \
&& curl -sSL $BB_URL | tar xz --strip 1 \
&& 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"]