Include make to dependencies
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m17s

This commit is contained in:
2026-03-10 12:13:42 +00:00
parent a8d1b879be
commit c7dbf5b778
2 changed files with 2 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
# Stage 1: Build Vue app
FROM node:22-slim AS build
RUN apt-get update && apt-get install -y make git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY vue/package.json vue/package-lock.json ./
RUN npm ci

View File

@@ -16,9 +16,7 @@ const auth = useAuthStore();
<main class="halftone justify-center flex flex-row w-full h-full">
<div class="a5page-portrait bdr-1 flex flex-col">
<Login class="bdr-2 bg-bg_primary" />
<!--
<CreateUser class="bdr-2 bg-bg_primary" />
-->
<CreateUser 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" />
<CreateActivity class="bdr-2 bg-bg_primary" v-if="auth.loggedIn" />