Add frontend and backend files
This commit is contained in:
@@ -1 +1,16 @@
|
||||
# pull official node image
|
||||
FROM node
|
||||
|
||||
# define /app as working directory
|
||||
WORKDIR /app
|
||||
|
||||
# copy package.json and package-lock.json to /app
|
||||
COPY package.json /app
|
||||
COPY package-lock.json /app
|
||||
|
||||
# install node dependencies
|
||||
RUN npm install
|
||||
COPY . /app
|
||||
|
||||
# launch node server
|
||||
ENTRYPOINT node server.js
|
Reference in New Issue
Block a user