File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # 3.11.2
2
+
3
+ Improve docker files
4
+
5
+ - Add prod config without volumes and autoreload
6
+
1
7
# 3.11.1
2
8
3
9
Better dependencies pinning
Original file line number Diff line number Diff line change
1
+ FROM node:22.0
2
+
3
+ RUN \
4
+ apt-get update \
5
+ && \
6
+ apt-get install -y \
7
+ libx11-xcb1 \
8
+ libxtst6 \
9
+ libnss3 \
10
+ libxss1 \
11
+ libasound2 \
12
+ libatk-bridge2.0-0 \
13
+ libgtk-3-0 \
14
+ libdrm2 \
15
+ libgbm1 \
16
+ fonts-wqy-zenhei \
17
+ && \
18
+ rm -rf /var/lib/apt/lists/*
19
+
20
+ RUN \
21
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
22
+ && \
23
+ /root/.cargo/bin/cargo install oxipng
24
+
25
+ EXPOSE 3000
26
+
27
+ WORKDIR /app
28
+
29
+ COPY package*.json src /app/
30
+
31
+ RUN npm install
32
+
33
+ CMD [ "npm", "run", "start" ]
You can’t perform that action at this time.
0 commit comments