Setup thai

This commit is contained in:
Ittipat Lusuk 2025-08-06 16:16:26 +07:00
parent 99b6232436
commit 8b3d74630b
4 changed files with 25 additions and 2 deletions

20
Dockerfile Normal file
View file

@ -0,0 +1,20 @@
FROM node:20-slim
RUN apt-get update && apt-get install -y tzdata && rm -rf /var/lib/apt/lists/*
ENV TZ=Asia/Bangkok
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV DEBUG=server:*
ENV PORT=36530
EXPOSE 36530
CMD [ "npm","start" ]