diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..574cb21 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM node:14 +WORKDIR /app +COPY package*.json ./ +RUN npm install +COPY . . +RUN npm install -g serve +RUN npm run build +CMD serve -s build +EXPOSE 5000 \ No newline at end of file diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..b228889 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,2 @@ +REPO pizzatime +LOAD pizzatime.yaml \ No newline at end of file diff --git a/pizzatime.yaml b/pizzatime.yaml new file mode 100644 index 0000000..1573483 --- /dev/null +++ b/pizzatime.yaml @@ -0,0 +1,13 @@ +namespace: pizzatime +pizzatime: + defines: runnable + metadata: + name: pizzatime + description: >- + This is a pizza delivery application where users can browse through + different pizza categories, add items to cart, and proceed with the + checkout. + icon: https://emojiapi.dev/api/v1/robot.svg + containers: + pizzatime: + build: .