Skip to content
Snippets Groups Projects
Commit 70958a9f authored by syuilo's avatar syuilo
Browse files

update node to 18

parent 9f3650b0
No related branches found
No related tags found
No related merge requests found
v16.14.0
v18.0.0
......@@ -10,6 +10,16 @@
You should also include the user name that made the change.
-->
## 12.x.x (unreleased)
### NOTE
- From this version, Node 18.0.0 or later is required.
### Improvements
-
### Bugfixes
-
## 12.110.0 (2022/04/11)
### Improvements
......
FROM node:16.14.0-alpine3.15 AS base
FROM node:18.0.0-alpine3.15 AS base
ENV NODE_ENV=production
......@@ -11,16 +11,16 @@ FROM base AS builder
COPY . ./
RUN apk add --no-cache $BUILD_DEPS && \
git submodule update --init && \
yarn install && \
yarn build && \
rm -rf .git
git submodule update --init && \
yarn install && \
yarn build && \
rm -rf .git
FROM base AS runner
RUN apk add --no-cache \
ffmpeg \
tini
ffmpeg \
tini
ENTRYPOINT ["/sbin/tini", "--"]
......
......@@ -25,9 +25,14 @@
"rootDir": "./src",
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
},
"outDir": "./built",
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types",
"./src/@types"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment