You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/docker/Dockerfile.build

20 lines
538 B
Docker

# -------------------------------------------------
# This Docker image is used to speed up the builds
# -------------------------------------------------
ARG NODE_VERSION
# Node.js + runtime dependencies
FROM ghcr.io/thumbsup/runtime:node-${NODE_VERSION}
# Metadata
LABEL org.opencontainers.image.source https://github.com/thumbsup/thumbsup
# Standard build dependencies for npm install
RUN apk add --no-cache git make g++ python bash
# Pre-install expensive dependencies
WORKDIR /app
RUN npm init -y
RUN npm install better-sqlite3