tempelhtml / Dockerfile
jehian's picture
Upload 16 files
dc7ee79 verified
raw
history blame contribute delete
309 Bytes
FROM mcr.microsoft.com/playwright:v1.60.0-noble
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev --ignore-scripts --no-audit --no-fund
COPY . .
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"]