changed node version to 12

This commit is contained in:
Ankit Nayan 2021-02-23 22:12:54 +05:30
parent 2234d31974
commit 2c4dc07d2d

View File

@ -1,5 +1,5 @@
# stage1 as builder
FROM node:14-alpine as builder
FROM node:12-alpine as builder
WORKDIR /frontend
@ -14,7 +14,7 @@ COPY . .
# Build the project and copy the files
RUN yarn build
FROM nginx:1.15-alpine
FROM nginx:1.12-alpine
#!/bin/sh