feat: first commit

This commit is contained in:
Narongpol Kijrangsan 2025-02-22 21:18:41 +07:00
commit 8b0c05008e
Signed by: nkdev
GPG key ID: 6E4892640C1DB7C5
79 changed files with 30897 additions and 0 deletions

22
Dockerfile Normal file
View file

@ -0,0 +1,22 @@
FROM node:latest
# Install Python, make, and build dependencies
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
make \
g++ \
libvips-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]