Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #27 from CodeChefVIT/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
aditansh authored Aug 30, 2023
2 parents 98c5bd1 + 06ba833 commit af4e894
Show file tree
Hide file tree
Showing 86 changed files with 6,587 additions and 135 deletions.
8 changes: 8 additions & 0 deletions cookoff24-landing/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:alpine

WORKDIR /app
COPY package.json .
RUN npm install
COPY . .

CMD ["npm", "run", "dev"]
8 changes: 8 additions & 0 deletions cookoff24-landing/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "80:3000" # Map port 3000 from the container to port 80 on the host
Loading

0 comments on commit af4e894

Please sign in to comment.