Node alpine with libraries for react-boilerplate
401
Use this image like this
FROM maksimkurb/node-alpine:10 AS build
COPY . /app
RUN yarn install && \
yarn run build
FROM nginx:1.15-alpine
COPY --from=build /app/build/ /var/www
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
Content type
Image
Digest
Size
87.3 MB
Last updated
over 7 years ago
docker pull maksimkurb/node-alpine