diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..056ad85 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:18 + +WORKDIR /usr/src/app + +COPY . . + +RUN npm install + +RUN npm ci + +EXPOSE 3000 + +CMD ["npm", "start"] diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..3418d92 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,7 @@ +version: '3' +services: + nebula: + image: nebula:latest + build: . + container_name: nebula + restart: unless-stopped