Revert some changes made with "Switch nodejs to use alpine and update both alpine images. (#26)"

This commit is contained in:
2022-07-15 16:31:07 +01:00
parent 28101779ee
commit 14240fee26

View File

@@ -1,8 +1,9 @@
FROM node:18.6-alpine AS base FROM node:18.6 AS base
LABEL version="4.1.0" LABEL version="4.1.0"
LABEL description="" LABEL description=""
RUN apk --update --no-cache upgrade && apk add g++ make python --no-cache RUN apt-get update && apt-get upgrade -y \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY ["package.json", "./"] COPY ["package.json", "./"]