CI/CD
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Jakub K 2023-11-19 20:39:10 +01:00
parent ff789ffd1e
commit 1ab64dbbbc
2 changed files with 4 additions and 2 deletions

View File

@ -5,12 +5,13 @@ COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
RUN npx tailwindcss -i ./src/index.css -o ./dist/output.css --watch
# Stage 2: Serve the app from Nginx
FROM nginx:alpine
# Copy the build output to replace the default nginx contents.
COPY --from=build-stage /app/build/ /usr/share/nginx/html
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
# Expose port 80 to the outside
EXPOSE 80
# Start Nginx when the container has provisioned.
CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off"]

View File

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link href="/dist/output.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>izaac frontend</title>
</head>