Skip to content

Commit

Permalink
Dockerized AI-Fusion (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ameya02 authored Sep 19, 2023
1 parent c7e8e7d commit 5f140ae
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:16-alpine

WORKDIR /frontend

COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 3000

CMD npm run dev
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3.9'
services:
app:
build: .
ports:
- "3000:3000"
expose:
- 3000
volumes:
- .:/app:rw
command:
- npm
- run
- dev

1 comment on commit 5f140ae

@vercel
Copy link

@vercel vercel bot commented on 5f140ae Sep 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

aifusion – ./

aifusion-git-main-priyansu.vercel.app
aifusion-priyansu.vercel.app
aifusion.vercel.app

Please sign in to comment.