Files
robot-shop/catalogue/Dockerfile
Cedric Ziel 4b201e58c3 Utilize Instana AutoProfile for NodeJS
* update NodeJS collector to a minimum of v1.98.0
* set INSTANA_AUTO_PROFILE=true so profiling is automatically enabled
2020-05-25 09:59:12 +02:00

17 lines
184 B
Docker

FROM node:10
ENV INSTANA_AUTO_PROFILE true
EXPOSE 8080
WORKDIR /opt/server
COPY package.json /opt/server/
RUN npm install
COPY server.js /opt/server/
CMD ["node", "server.js"]