This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG NODE_VERSION={Add your preferred version number} | |
ARG ALPINE_VERSION=3.21 | |
ARG APP_NAME | |
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} | |
ARG APP_NAME | |
ENV APP_NAME=${APP_NAME} | |
WORKDIR /app |