nodejs/test/examples/from-dockerfile/Dockerfile
phracek 5bfde53a71 Merge pull request #340 from zmiklank/exit_oc_tests_if_login_fails
Exit oc tests gracefully if login fails
2022-06-10 08:44:57 +00:00

10 lines
209 B
Docker

FROM registry.access.redhat.com/ubi8/nodejs-12
# Add application sources
ADD app-src .
# Install the dependencies
RUN npm install
# Run script uses standard ways to run the application
CMD npm run -d start