2023-06-13 20:26:11 +02:00
|
|
|
# Setup base image
|
|
|
|
FROM ubuntu:jammy-20230522 AS base
|
|
|
|
|
|
|
|
# Build arguments
|
|
|
|
ARG ARG_UID
|
|
|
|
ARG ARG_GID
|
|
|
|
|
|
|
|
# Install system dependencies
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
|
|
|
|
curl libgfortran5 python3 python3-pip tzdata netcat \
|
|
|
|
libasound2 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 \
|
|
|
|
libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libx11-6 libx11-xcb1 libxcb1 \
|
|
|
|
libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 \
|
|
|
|
libxss1 libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release \
|
|
|
|
xdg-utils && \
|
|
|
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
|
|
|
apt-get install -yq --no-install-recommends nodejs && \
|
|
|
|
curl -LO https://github.com/yarnpkg/yarn/releases/download/v1.22.19/yarn_1.22.19_all.deb \
|
|
|
|
&& dpkg -i yarn_1.22.19_all.deb \
|
|
|
|
&& rm yarn_1.22.19_all.deb && \
|
2023-06-16 10:23:32 +02:00
|
|
|
curl -LO https://github.com/jgm/pandoc/releases/download/3.1.3/pandoc-3.1.3-1-amd64.deb \
|
|
|
|
&& dpkg -i pandoc-3.1.3-1-amd64.deb \
|
|
|
|
&& rm pandoc-3.1.3-1-amd64.deb && \
|
2023-06-13 20:26:11 +02:00
|
|
|
rm -rf /var/lib/apt/lists/* /usr/share/icons && \
|
|
|
|
dpkg-reconfigure -f noninteractive tzdata && \
|
|
|
|
python3 -m pip install --no-cache-dir virtualenv
|
|
|
|
|
|
|
|
# Create a group and user with specific UID and GID
|
|
|
|
RUN groupadd -g $ARG_GID anythingllm && \
|
|
|
|
useradd -u $ARG_UID -m -d /app -s /bin/bash -g anythingllm anythingllm && \
|
|
|
|
mkdir -p /app/frontend/ /app/server/ /app/collector/ && chown -R anythingllm:anythingllm /app
|
|
|
|
|
2023-06-17 01:01:27 +02:00
|
|
|
# Copy docker helper scripts
|
2023-06-13 20:26:11 +02:00
|
|
|
COPY ./docker/docker-entrypoint.sh /usr/local/bin/
|
|
|
|
COPY ./docker/docker-healthcheck.sh /usr/local/bin/
|
|
|
|
|
|
|
|
# Ensure the scripts are executable
|
|
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh && \
|
2023-06-18 05:18:01 +02:00
|
|
|
chmod +x /usr/local/bin/docker-healthcheck.sh
|
2023-06-13 20:26:11 +02:00
|
|
|
|
|
|
|
USER anythingllm
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Install frontend dependencies
|
|
|
|
FROM base as frontend-deps
|
|
|
|
|
|
|
|
COPY ./frontend/package.json ./frontend/yarn.lock ./frontend/
|
|
|
|
RUN cd ./frontend/ && yarn install && yarn cache clean
|
|
|
|
|
|
|
|
# Install server dependencies
|
|
|
|
FROM base as server-deps
|
|
|
|
COPY ./server/package.json ./server/yarn.lock ./server/
|
|
|
|
RUN cd ./server/ && yarn install --production && yarn cache clean && \
|
|
|
|
rm /app/server/node_modules/vectordb/x86_64-apple-darwin.node && \
|
|
|
|
rm /app/server/node_modules/vectordb/aarch64-apple-darwin.node
|
|
|
|
|
|
|
|
# Build the frontend
|
|
|
|
FROM frontend-deps as build-stage
|
|
|
|
COPY ./frontend/ ./frontend/
|
|
|
|
RUN cd ./frontend/ && yarn build && yarn cache clean
|
|
|
|
|
|
|
|
# Setup the server
|
|
|
|
FROM server-deps as production-stage
|
2023-08-10 19:37:38 +02:00
|
|
|
COPY --chown=anythingllm:anythingllm ./server/ ./server/
|
2023-06-13 20:26:11 +02:00
|
|
|
|
|
|
|
# Copy built static frontend files to the server public directory
|
|
|
|
COPY --from=build-stage /app/frontend/dist ./server/public
|
|
|
|
|
|
|
|
# Copy the collector
|
2023-08-10 19:37:38 +02:00
|
|
|
COPY --chown=anythingllm:anythingllm ./collector/ ./collector/
|
2023-06-13 20:26:11 +02:00
|
|
|
|
|
|
|
# Install collector dependencies
|
|
|
|
RUN cd /app/collector && \
|
|
|
|
python3 -m virtualenv v-env && \
|
|
|
|
. v-env/bin/activate && \
|
|
|
|
pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
2023-09-28 23:00:03 +02:00
|
|
|
# Migrate and Run Prisma against known schema
|
|
|
|
RUN cd ./server && npx prisma generate --schema=./prisma/schema.prisma
|
|
|
|
RUN cd ./server && npx prisma migrate deploy --schema=./prisma/schema.prisma
|
|
|
|
|
2023-06-13 20:26:11 +02:00
|
|
|
# Setup the environment
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
ENV PATH=/app/collector/v-env/bin:$PATH
|
|
|
|
|
|
|
|
# Expose the server port
|
|
|
|
EXPOSE 3001
|
|
|
|
|
|
|
|
# Setup the healthcheck
|
|
|
|
HEALTHCHECK --interval=1m --timeout=10s --start-period=1m \
|
|
|
|
CMD /bin/bash /usr/local/bin/docker-healthcheck.sh || exit 1
|
|
|
|
|
|
|
|
# Run the server
|
2023-06-18 05:18:01 +02:00
|
|
|
ENTRYPOINT ["/bin/bash", "/usr/local/bin/docker-entrypoint.sh"]
|