File size: 734 Bytes
796ab61
3596483
796ab61
 
3596483
796ab61
 
 
f5736d0
44f50a4
796ab61
3596483
796ab61
 
 
643f78f
796ab61
 
 
 
 
 
 
 
 
 
 
 
 
211db6d
796ab61
39c8db3
211db6d
796ab61
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM mcr.microsoft.com/playwright:focal

# Skip Playwright browser downloads
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1

# Set timezone
ENV TZ=Asia/Jakarta
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

WORKDIR /app

COPY . .
# Install dependencies
RUN npm install

# Install Playwright dependencies and browser
RUN npx playwright install --with-deps

# Install additional dependencies for fonts
RUN apt-get update && apt-get install -y \
  wget \
  fontconfig \
  fonts-noto-color-emoji \
  fontconfig \
  --no-install-recommends && \
  rm -rf /var/lib/apt/lists/*

# Set environment variable for the app port
ENV PORT=7860

# Expose the port
EXPOSE 7860

# Start the application
CMD ["node", "index.js"]