add initial project files and setup for Vue with Tailwind CSS and authentication
This commit is contained in:
parent
2f1ceec405
commit
fd65043a0e
29 changed files with 2682 additions and 0 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM node:20-alpine as build-stage
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm i
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm run build
|
||||
|
||||
FROM busybox:latest
|
||||
|
||||
COPY --from=build-stage /app/dist /app
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["busybox", "httpd", "-f", "-p", "80", "-h", "/app"]
|
Loading…
Add table
Add a link
Reference in a new issue