fix docker build harder

This commit is contained in:
Christian Kellner
2025-05-15 10:37:21 +02:00
parent bd6a572ab0
commit ef689cf97e
2 changed files with 23 additions and 41 deletions

View File

@@ -1,33 +1,28 @@
FROM node:20
# Install chromium dependencies in a separate layer (cacheable)
RUN apt-get update && apt-get install -y chromium && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /fredy
# Copy only package.json + yarn.lock for dependency caching
COPY package.json yarn.lock ./
COPY . /fredy
# Increase network timeout for npm registry
RUN yarn config set network-timeout 600000 && yarn install
RUN apt-get update && apt-get install -y chromium
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \
PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
# Timeout fix für yarn hinzugefügt
RUN yarn config set network-timeout 600000
RUN yarn install
# Global tools (cached separately)
RUN yarn global add pm2
# Copy application source code (after deps, cache friendly)
COPY . .
# Build step (assuming 'prod' is a build script)
RUN yarn run prod
# Prepare runtime dirs
RUN mkdir /db /conf && \
chown 1000:1000 /db /conf && \
chmod 777 -R /db/ && \
ln -s /db /fredy/db && ln -s /conf /fredy/conf
chown 1000:1000 /db /conf && \
chmod 777 -R /db/ && \
ln -s /db /fredy/db && ln -s /conf /fredy/conf
# Expose port & set runtime command
EXPOSE 9998
CMD ["pm2-runtime", "index.js"]
CMD pm2-runtime index.js