Update Dockerfile

This commit is contained in:
verita84 2023-09-25 04:41:44 +00:00
parent 1ace9ca5b9
commit 5c2b0fe8aa

View File

@ -1,13 +1,19 @@
FROM docker.io/debian:bookworm
ENV PG_VERSION=15
ENV NODE_MAJOR=18
ENV PG_BIN=/usr/lib/postgresql/$PG_VERSION/bin
ENV PG_DIR=/var/lib/postgresql/$PG_VERSION/main
RUN export TERM=xterm
RUN apt update;apt install -y bash curl openssl postgresql postgresql-contrib ffmpeg git python3 build-essential nginx redis unzip wget procps
COPY nodesource /etc/apt/preferences.d/
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -;apt update; apt -y install nodejs yarn
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN apt-get update;apt-get install nodejs npm -y
WORKDIR /opt
RUN git clone -b master https://github.com/misskey-dev/misskey.git --depth=1
WORKDIR /opt/misskey
RUN npm install -g pnpm vite
RUN git submodule update --init
RUN pnpm install --frozen-lockfile
RUN NODE_ENV=production pnpm run build
RUN rm -rf /etc/nginx/conf.d/*
RUN rm -f /etc/nginx/sites-enabled/default
RUN rm -f /etc/nginx/sites-available/default