Last active
April 22, 2020 04:52
-
-
Save derianpt/050d1cc660ce441c5e8cf34a01725bcb to your computer and use it in GitHub Desktop.
front-end app
This file contains 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
# Base image is Alpine with latest stable Node installed. | |
FROM node:alpine | |
# set working directory for subsequent commands | |
WORKDIR /front-end | |
# leverage build cache by copying npm package files first | |
COPY ./package*.json ./ | |
RUN npm install |
did you mean to say stable* Node?
Ah yes, thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
did you mean to say stable* Node?