Update Dockerfile to use Node.js v18

This commit is contained in:
Samuel Elliott
2022-07-28 13:09:06 +01:00
parent db449fb4db
commit b3efd0f15c

View File

@@ -1,4 +1,4 @@
FROM node:17 as build
FROM node:18 as build
WORKDIR /app
@@ -13,7 +13,7 @@ ADD tsconfig.json /app
RUN npx tsc
FROM node:17
FROM node:18
RUN apt update && \
apt install -y android-tools-adb && \