add quasar install into dockerfile

This commit is contained in:
Frédérick Pruneau 2025-12-29 10:31:44 -05:00
parent 38cbc326a5
commit 6beafc782e

View File

@ -4,6 +4,9 @@ FROM node:22
# Set the working directory inside the container # Set the working directory inside the container
WORKDIR /app WORKDIR /app
# Adding Quasar
RUN yarn global add @quasar/cli
# Set the environment variables # Set the environment variables
ENV DATABASE_URL_PROD="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db?schema=public" ENV DATABASE_URL_PROD="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db?schema=public"
ENV DATABASE_URL_STAGING="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db_staging?schema=public" ENV DATABASE_URL_STAGING="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db_staging?schema=public"