enigma-bbs/docker/Dockerfile

73 lines
1.8 KiB
Docker
Raw Normal View History

2023-10-15 20:17:47 +00:00
FROM --platform=${BUILDPLATFORM:-linux/amd64} node:20-bookworm-slim
ARG TARGETPLATFORM
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETBRANCH
2021-02-19 19:06:07 +00:00
2021-02-19 19:11:34 +00:00
LABEL maintainer="dave@force9.org"
2021-02-19 19:06:07 +00:00
ENV NVM_DIR /root/.nvm
ENV DEBIAN_FRONTEND noninteractive
2023-10-15 20:17:47 +00:00
# Just copy the package.json so it only needs to build once
2023-10-15 20:37:35 +00:00
COPY package.json /enigma-bbs/
2023-10-15 20:17:47 +00:00
# Install APT and NPM packages
RUN apt-get update \
&& apt-get install -y \
2021-02-19 19:06:07 +00:00
git \
curl \
build-essential \
2022-01-26 11:08:58 +00:00
python3 \
2021-02-19 19:06:07 +00:00
libssl-dev \
lrzsz \
arj \
lhasa \
unrar-free \
p7zip-full \
2023-08-26 15:37:12 +00:00
dos2unix \
2023-10-15 20:17:47 +00:00
&& npm set progress=false && npm config set depth 0 \
2023-08-26 15:54:39 +00:00
&& npm install -g npm@latest \
&& npm install -g pm2 \
2023-10-15 20:17:47 +00:00
&& cd /enigma-bbs && npm install
# Do this after npm install to avoid cache-miss on every code change
COPY . /enigma-bbs
# Then run post source copy steps that have to happen every time
RUN dos2unix /enigma-bbs/docker/bin/docker-entrypoint.sh \
&& apt-get remove dos2unix -y \
&& chmod +x /enigma-bbs/docker/bin/docker-entrypoint.sh \
&& cp -f /enigma-bbs/docker/bin/sexyz /usr/local/bin \
2023-10-15 20:43:31 +00:00
&& cd /enigma-bbs \
&& pm2 start main.js \
2022-01-26 11:10:03 +00:00
&& mkdir -p /enigma-bbs-pre/art \
&& mkdir /enigma-bbs-pre/mods \
&& mkdir /enigma-bbs-pre/config \
&& cp -rp art/* ../enigma-bbs-pre/art/ \
&& cp -rp mods/* ../enigma-bbs-pre/mods/ \
&& cp -rp config/* ../enigma-bbs-pre/config/ \
2023-10-15 20:22:16 +00:00
&& apt-get remove build-essential python3 libssl-dev git curl -y \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& apt-get clean
2021-02-19 19:06:07 +00:00
# enigma storage mounts
VOLUME /enigma-bbs/art
VOLUME /enigma-bbs/config
VOLUME /enigma-bbs/db
VOLUME /enigma-bbs/filebase
VOLUME /enigma-bbs/logs
VOLUME /enigma-bbs/mods
VOLUME /mail
2021-02-19 19:06:07 +00:00
# Enigma default port
EXPOSE 8888
WORKDIR /enigma-bbs
ENTRYPOINT ["/enigma-bbs/docker/bin/docker-entrypoint.sh"]