Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:14
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 5000
CMD [ "npx", "serve", "-s", "build" ]
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
REPO pizzatime
LOAD pizzatime.yaml
20 changes: 20 additions & 0 deletions pizzatime.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
namespace: pizzatime
pizzatime:
defines: runnable
metadata:
name: pizzatime
description: >-
A food delivery application that allows user to order food from a variety
of categories.
icon: https://emojiapi.dev/api/v1/pizza.svg
containers:
pizzatime:
build: .
services:
application:
container: pizzatime
port: 5000
host-port: 5000
publish: false
protocol: TCP
description: main application port