mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
FROM node:12.4.0-alpine as dev
|
|
|
|
RUN mkdir /work/
|
|
WORKDIR /work/
|
|
|
|
COPY ./src/package.json /work/package.json
|
|
RUN npm install
|
|
|
|
COPY ./src/ /work/
|
|
|
|
CMD node .
|