Move the node Dockerfile into a sub-directory

This commit is contained in:
Oliver Davies 2021-07-02 17:56:01 +01:00
parent cd01f5d8e3
commit f8e945d8ee
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,4 @@
FROM node:14 AS base
WORKDIR /node
COPY package*.json ./
RUN npm install