upgrade to node.js@16.5.0

This commit is contained in:
Philipp Dormann 2021-07-24 19:49:59 +02:00
parent dce49cf293
commit cbaf5738e7
No known key found for this signature in database
GPG Key ID: 3BB9ADD52DCA4314
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
FROM node:16.4.2-alpine3.14
FROM node:16.5.0-alpine3.14
WORKDIR /app
COPY . .
RUN yarn --frozen-lockfile
RUN yarn build
#
FROM node:16.4.2-alpine3.14
FROM node:16.5.0-alpine3.14
WORKDIR /app
VOLUME ["/app/data"]
EXPOSE 50013

View File

@ -64,6 +64,6 @@
}
},
"volta": {
"node": "16.4.2"
"node": "16.5.0"
}
}