APS_NodeJS_MultiModel/Dockerfile

12 lines
143 B
Text
Raw Normal View History

2024-11-24 08:52:39 +01:00
FROM node:alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY . .
RUN npm install
EXPOSE 8080
CMD ./start.sh