aps_webviewer_nodejs/Dockerfile

12 lines
143 B
Text
Raw Permalink Normal View History

2024-11-08 10:44:42 +01:00
FROM node:alpine
2024-11-08 07:51:28 +01:00
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
2024-11-08 10:42:24 +01:00
COPY . .
RUN npm install
2024-11-08 09:32:57 +01:00
2024-11-08 07:51:28 +01:00
EXPOSE 8080
CMD ./start.sh