Added test assets for Docker strategy

This commit is contained in:
Corey Butler
2022-10-12 20:52:57 -05:00
parent bacfccaa39
commit 3a8a42e855
2 changed files with 7 additions and 0 deletions

6
test/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:13-alpine
LABEL version=1.1.0
ADD ./app /app
WORKDIR /app
RUN cd /app && npm i
CMD ["node", "/app/main.js"]