liljudd-website/Dockerfile

52 lines
1.6 KiB
Docker
Raw Normal View History

2024-01-16 21:09:00 +00:00
# Use the desired base image
2024-01-05 00:29:42 +00:00
FROM node:21-alpine AS base
2024-01-16 21:09:00 +00:00
# Set the NODE_ENV to production
2024-01-05 02:26:21 +00:00
ENV NODE_ENV production
2024-01-05 00:29:42 +00:00
# Install dependencies only when needed
FROM base AS deps
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
2024-01-16 21:09:00 +00:00
# Pass the Font Awesome token as a build argument
ARG FONT_AWESOME_TOKEN
RUN echo "@fortawesome:registry=https://npm.fontawesome.com/" > ~/.npmrc \
&& echo "//npm.fontawesome.com/:_authToken=${FONT_AWESOME_TOKEN}" >> ~/.npmrc \
&& if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
2024-01-05 02:26:21 +00:00
elif [ -f package-lock.json ]; then npm ci; \
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
2024-01-05 00:29:42 +00:00
else echo "Lockfile not found." && exit 1; \
fi
# Rebuild the source code only when needed
FROM base AS builder
2023-12-05 20:05:31 +00:00
WORKDIR /app
2024-01-05 00:29:42 +00:00
COPY --from=deps /app/node_modules ./node_modules
2023-12-05 20:05:31 +00:00
COPY . .
RUN npm run build
2024-01-05 00:29:42 +00:00
# Production image, copy all the files and run next
FROM base AS runner
WORKDIR /app
2024-01-16 21:09:00 +00:00
RUN addgroup --system --gid 1001 nodejs \
&& adduser --system --uid 1001 solidjs
2024-01-05 00:29:42 +00:00
COPY --from=builder /app/public ./public
COPY --from=builder --chown=solidjs:nodejs /app/.output ./.output
COPY --from=builder --chown=solidjs:nodejs /app/.vinxi ./.vinxi
USER solidjs
EXPOSE 3000
2024-01-16 21:09:00 +00:00
# Set the default values for environment variables
2024-01-05 00:29:42 +00:00
ENV PORT 3000
ENV HOSTNAME "0.0.0.0"
2024-01-05 02:26:21 +00:00
CMD ["node", ".output/server/index.mjs"]