Skip to content

Commit

Permalink
feat: add Dockerfile to frontend dir for CI/CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gerbie-goober committed Jul 31, 2024
1 parent dd3278b commit e90e749
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM node:latest

WORKDIR /app

COPY package.json .
RUN npm install

COPY . .

EXPOSE 80

CMD ["npm", "run", "docker"]

0 comments on commit e90e749

Please sign in to comment.