aps_webviewer_nodejs/Dockerfile
2024-11-08 11:12:17 +01: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