From c7e167786c2882143c719db2333bc0d1206af097 Mon Sep 17 00:00:00 2001 From: Chris Grimmett Date: Mon, 8 Apr 2024 14:15:48 -0800 Subject: [PATCH] dockerfile tweaks --- packages/strapi/.dockerignore | 2 +- strapi.dockerfile | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/strapi/.dockerignore b/packages/strapi/.dockerignore index cb3ff97..43c04c2 100644 --- a/packages/strapi/.dockerignore +++ b/packages/strapi/.dockerignore @@ -6,4 +6,4 @@ build/ node_modules/ # Ignoring folders that might be used in starter templates data/ -backup/ \ No newline at end of file +backup \ No newline at end of file diff --git a/strapi.dockerfile b/strapi.dockerfile index 9c744b7..c9afe28 100644 --- a/strapi.dockerfile +++ b/strapi.dockerfile @@ -1,16 +1,14 @@ -FROM node:18.16-alpine as base +FROM node:18.16-alpine ENV PNPM_HOME="/pnpm" ENV PATH="$PNPM_HOME:$PATH" +ENV NODE_ENV=production RUN corepack enable # Installing libvips-dev for sharp Compatibility RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev libc6-compat git nasm bash gcompat WORKDIR /app - - COPY pnpm-lock.yaml package.json ./ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile COPY ./packages/strapi . -ENV PATH=/app/node_modules/.bin:$PATH RUN chown -R node:node /app USER node @@ -19,6 +17,6 @@ USER node # ENV NODE_ENV=development # CMD ["pnpm", "run", "dev"] -ENV NODE_ENV=production + ENTRYPOINT ["pnpm"] CMD ["run", "start"] \ No newline at end of file