start.sh removed

This commit is contained in:
David Friedrich 2024-11-08 11:12:17 +01:00
parent 8126f51eb0
commit cec4023d04
2 changed files with 0 additions and 9 deletions

View file

@ -4,16 +4,8 @@ FROM node:alpine
WORKDIR /usr/src/app WORKDIR /usr/src/app
# Install app dependencies # Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
#RUN npm install -g nodaemon
#COPY package*.json .
#RUN npm install
#UN npm install -g nodaemon
COPY . . COPY . .
RUN npm install RUN npm install
EXPOSE 8080 EXPOSE 8080
CMD ./start.sh CMD ./start.sh

View file

@ -1 +0,0 @@
npm start run