Setup thai
This commit is contained in:
parent
99b6232436
commit
8b3d74630b
4 changed files with 25 additions and 2 deletions
20
Dockerfile
Normal file
20
Dockerfile
Normal 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" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue