Initial commit

Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
This commit is contained in:
Eric Tuvesson
2023-12-04 10:20:38 +01:00
commit 663c0a2e39
43 changed files with 39568 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM nikolaik/python-nodejs:python3.8-nodejs16
# Copy over the local NPM package
# this is why the Dockerfile is in the root folder
WORKDIR /usr/src/noodl-cloudservice
COPY ./packages/noodl-cloudservice .
RUN npm install
WORKDIR /usr/src/app
COPY packages/noodl-cloudservice-docker .
RUN npm install
EXPOSE 3000
CMD [ "node", "./src/index.js" ]