mirror of
https://github.com/noodlapp/noodl-cloudservice.git
synced 2026-01-11 14:52:53 +01:00
Initial commit
Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user