get rid of apline version of container
@@ -1,5 +1,5 @@
# => Building container
-FROM node:18-alpine as builder
+FROM node:18 as builder
WORKDIR /app
COPY . .
@@ -15,7 +15,7 @@ ENV PORT 80
RUN yarn build
# => Copy to Final container
-FROM node:18-alpine
+FROM node:18
COPY --from=builder /app/server/dist /app/dist
COPY --from=builder /app/client/build /app/build