APS_NodeJS_MultiModel/Dockerfile
2024-11-24 04:52:39 -03:00

11 lines
143 B
Docker

FROM node:alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY . .
RUN npm install
EXPOSE 8080
CMD ./start.sh