Skip to content

Commit 554006f

Browse files
committed
update Docker node version
1 parent eae53b3 commit 554006f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM node:14.15.0-alpine as ts-builder
1+
FROM node:lts-alpine as ts-builder
22
WORKDIR /app
33
COPY . /app
44
RUN npm install --ignore-scripts && npm run build
55

6-
FROM node:14.15.0-alpine as dep-builder
6+
FROM node:lts-alpine as dep-builder
77
WORKDIR /app
88
COPY package.json clean-nm.sh /app/
99
RUN apk add --no-cache --update build-base python2
1010
RUN npm install --production && sh /app/clean-nm.sh
1111

12-
FROM node:14.15.0-alpine as app
12+
FROM node:lts-alpine as app
1313
WORKDIR /app
1414
ENV NODE_PRODUTION true
1515
COPY data /app/data

0 commit comments

Comments
 (0)