Include make to dependencies
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m17s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m17s
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
# Stage 1: Build Vue app
|
# Stage 1: Build Vue app
|
||||||
FROM node:22-slim AS build
|
FROM node:22-slim AS build
|
||||||
|
RUN apt-get update && apt-get install -y make git && rm -rf /var/lib/apt/lists/*
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY vue/package.json vue/package-lock.json ./
|
COPY vue/package.json vue/package-lock.json ./
|
||||||
RUN npm ci
|
RUN npm ci
|
||||||
|
|||||||
@@ -16,9 +16,7 @@ const auth = useAuthStore();
|
|||||||
<main class="halftone justify-center flex flex-row w-full h-full">
|
<main class="halftone justify-center flex flex-row w-full h-full">
|
||||||
<div class="a5page-portrait bdr-1 flex flex-col">
|
<div class="a5page-portrait bdr-1 flex flex-col">
|
||||||
<Login class="bdr-2 bg-bg_primary" />
|
<Login class="bdr-2 bg-bg_primary" />
|
||||||
<!--
|
<CreateUser class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
||||||
<CreateUser class="bdr-2 bg-bg_primary" />
|
|
||||||
-->
|
|
||||||
<CreatePost class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
<CreatePost class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
||||||
<CreateFavorite class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
<CreateFavorite class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
||||||
<CreateActivity class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
<CreateActivity class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />
|
||||||
|
|||||||
Reference in New Issue
Block a user