hippofish/Dockerfile

52 lines
2.1 KiB
Docker
Raw Normal View History

# Install dev and compilation dependencies, build files
FROM docker.io/node:20-alpine AS build
2023-07-03 00:18:30 +02:00
WORKDIR /firefish
# Install build tools and work around the linker name issue
2024-04-27 00:04:50 +02:00
RUN apk update && apk add --no-cache build-base linux-headers curl ca-certificates python3 perl
RUN ln -s $(which gcc) /usr/bin/aarch64-linux-musl-gcc
2023-06-22 19:16:59 +02:00
# Install Rust toolchain
RUN curl --proto '=https' --tlsv1.2 --silent --show-error --fail https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
# Configure pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
# Build
COPY . ./
RUN pnpm install --frozen-lockfile
RUN NODE_ENV='production' NODE_OPTIONS='--max_old_space_size=3072' pnpm run build
2023-06-22 19:16:59 +02:00
# Trim down the dependencies to only those for production
RUN find . -path '*/node_modules/*' -delete && pnpm install --prod --frozen-lockfile
# Runtime container
2024-03-07 11:52:02 +01:00
FROM docker.io/node:20-alpine
2023-07-03 00:18:30 +02:00
WORKDIR /firefish
# Install runtime dependencies
RUN apk update && apk add --no-cache zip unzip tini ffmpeg curl
COPY . ./
# Copy node modules
2023-07-03 00:18:30 +02:00
COPY --from=build /firefish/node_modules /firefish/node_modules
COPY --from=build /firefish/packages/backend/node_modules /firefish/packages/backend/node_modules
# COPY --from=build /firefish/packages/sw/node_modules /firefish/packages/sw/node_modules
# COPY --from=build /firefish/packages/client/node_modules /firefish/packages/client/node_modules
2023-07-03 00:18:30 +02:00
COPY --from=build /firefish/packages/firefish-js/node_modules /firefish/packages/firefish-js/node_modules
# Copy the build artifacts
2023-07-03 00:18:30 +02:00
COPY --from=build /firefish/built /firefish/built
COPY --from=build /firefish/packages/backend/built /firefish/packages/backend/built
COPY --from=build /firefish/packages/backend/assets/instance.css /firefish/packages/backend/assets/instance.css
COPY --from=build /firefish/packages/backend-rs/built /firefish/packages/backend-rs/built
2024-05-22 13:29:54 +02:00
COPY --from=build /firefish/packages/firefish-js/built /firefish/packages/firefish-js/built
2023-06-22 04:58:02 +02:00
RUN corepack enable && corepack prepare pnpm@latest --activate
2023-06-22 08:00:28 +02:00
ENV NODE_ENV=production
2023-07-03 00:18:30 +02:00
VOLUME "/firefish/files"
2024-03-07 11:52:02 +01:00
ENTRYPOINT [ "/sbin/tini", "--" ]
CMD [ "pnpm", "run", "start:container" ]