This won't work
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
FROM node:16
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Install app dependencies
|
||||
# A wildcard is used to ensure both package.json AND package-lock.json are copied
|
||||
# where available (npm@5+)
|
||||
COPY lifetracker-server/package*.json ./
|
||||
|
||||
RUN ls --recursive ./
|
||||
|
||||
RUN npm install
|
||||
# If you are building your code for production
|
||||
# RUN npm ci --omit=dev
|
||||
|
||||
# Bundle app source
|
||||
COPY lifetracker-server .
|
||||
|
||||
EXPOSE 8080
|
||||
CMD [ "node", "server.js" ]
|
||||
Reference in New Issue
Block a user