Revert "Change base to use alpine (#15)"

This reverts commit 44f63b49cb.
This commit is contained in:
2022-05-19 17:26:56 +01:00
parent 44f63b49cb
commit caa9280236

View File

@@ -1,4 +1,4 @@
FROM node:18-alpine AS base
FROM node:18.0.0 AS base
LABEL version="4.1.0"
LABEL description=""
@@ -7,10 +7,7 @@ COPY ["package.json", "./"]
COPY ["yarn.lock", "./"]
FROM base AS builder
RUN apk add --no-cache --virtual .gyp python3 make g++ \
&& yarn install \
&& apk del .gyp
RUN yarn install
COPY ["src/", "./src"]
RUN npm run Prod