ac0ad98b55
* Fixed problem with docker-compose not updating new files in the multi-stage build. * Update readme with a new screenshot
15 lines
No EOL
215 B
Docker
15 lines
No EOL
215 B
Docker
FROM node:16-alpine3.14
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN apk add --update-cache build-base python3
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build |