Skip to content

Commit

Permalink
Added docker scripts to build and run container
Browse files Browse the repository at this point in the history
  • Loading branch information
jdf18 committed Dec 29, 2024
1 parent 219f6f6 commit b609859
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node
WORKDIR /app
COPY package.json /app
RUN npm install
COPY . /app
CMD ["npm", "start"]
6 changes: 6 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
services:
forked-flavors:
build: .
container_name: forked-flavors
ports:
- "80:8080"

0 comments on commit b609859

Please sign in to comment.