File size: 396 Bytes
330c0d5
0016fff
330c0d5
 
 
 
 
428e5a1
330c0d5
 
 
 
 
b9e2507
a3985d4
330c0d5
 
 
00fcd3c
330c0d5
 
fcff444
a11bb7f
330c0d5
 
 
 
 
c502866
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
# 使用Node.js基础镜像
FROM node:16.11.1

# 设置大陆时区
ENV TZ Asia/Shanghai

# 设置工作目录
WORKDIR /NSFW

# 将本地的所有文件复制到工作目录
COPY . .

# 赋予权限/归递
RUN chmod -R 777 /tmp
RUN chmod -R 777 /NSFW

# 安装数据库
RUN apt update


# 安装依赖
RUN npm install yarn
RUN yarn 

# 暴露端口
EXPOSE 7860

# 启动!
CMD ["node", "app.js"]