Waste of time
This commit is contained in:
parent
576ccd39c1
commit
1134979fb5
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
node_modules
|
||||||
|
npm-debug.log
|
||||||
23
Dockerfile
23
Dockerfile
@ -1,6 +1,19 @@
|
|||||||
FROM node:14.8.0-alpine
|
FROM node:16
|
||||||
WORKDIR /app
|
|
||||||
COPY lifetracker-server ./
|
# Create app directory
|
||||||
WORKDIR /app/lifetracker-server
|
WORKDIR /usr/src/app
|
||||||
CMD [ "npm", "install"]
|
|
||||||
|
# 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 npm install
|
||||||
|
# If you are building your code for production
|
||||||
|
# RUN npm ci --omit=dev
|
||||||
|
|
||||||
|
# Bundle app source
|
||||||
|
COPY lifetracker-server .
|
||||||
|
|
||||||
|
EXPOSE 8081
|
||||||
CMD [ "npm", "start" ]
|
CMD [ "npm", "start" ]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user