Modified Dockerfile for runner
This commit is contained in:
parent
428f2a95a6
commit
ad6e78b719
38
Dockerfile
38
Dockerfile
|
|
@ -8,52 +8,14 @@ WORKDIR /app
|
||||||
RUN yarn global add @quasar/cli
|
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_STAGING="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db_staging?schema=public"
|
|
||||||
ENV DATABASE_URL_DEV="postgresql://apptargo:6wLAZrb0HZnd3mrmqXiArPcqLyui0o9e@10.100.0.116/app_targo_db_dev?schema=public"
|
|
||||||
|
|
||||||
# this section is for the mariadb connection setup, DEV VARIABLES ******
|
|
||||||
#ENV DATABASE_URL_MARIADB= "mysql://matthieu:targo123@10.100.80.100:3306/testgc?schema=public"
|
|
||||||
#ENV DATABASE_HOST="10.100.80.100"
|
|
||||||
#ENV DATABASE_USER="matthieu"
|
|
||||||
#ENV DATABASE_PASSWORD="targo123"
|
|
||||||
#ENV DATABASE_NAME="testgc"
|
|
||||||
|
|
||||||
ENV AUTHENTIK_ISSUER="https://auth.targo.ca/application/o/montargo/"
|
|
||||||
ENV AUTHENTIK_CLIENT_ID="KUmSmvpu2aDDy4JfNwas7XriNFtPcj2Ka2PyLO5v"
|
|
||||||
ENV AUTHENTIK_CLIENT_SECRET="N55BgX1mxT7eiY99LOo5zXr5cKz9FgTsaCA9MdC7D8ZuhOGqozvqtNXVGbpY1eCg2kkYwJeJLP89sQ8R4cYybIJI7EwKijb19bzZQpUPwBosWwG3irUwdTnZOyw8yW5i"
|
|
||||||
|
|
||||||
ARG DB_URL
|
|
||||||
ARG CALLBACK_URL
|
|
||||||
ENV AUTHENTIK_CALLBACK_URL=$CALLBACK_URL
|
|
||||||
ENV DATABASE_URL=$DB_URL
|
|
||||||
#ENV AUTHENTIK_CALLBACK_URL="http://10.100.251.2:3420/auth/callback"
|
|
||||||
ENV AUTHENTIK_AUTH_URL="https://auth.targo.ca/application/o/authorize/"
|
|
||||||
ENV AUTHENTIK_TOKEN_URL="https://auth.targo.ca/application/o/token/"
|
|
||||||
ENV AUTHENTIK_USERINFO_URL="https://auth.targo.ca/application/o/userinfo/"
|
|
||||||
|
|
||||||
ENV TARGO_FRONTEND_URI="http://10.100.251.2/"
|
|
||||||
|
|
||||||
ENV ATTACHMENTS_SERVER_ID="server"
|
ENV ATTACHMENTS_SERVER_ID="server"
|
||||||
ENV ATTACHMENTS_ROOT=C:/
|
ENV ATTACHMENTS_ROOT=C:/
|
||||||
ENV MAX_UPLOAD_MB=25
|
ENV MAX_UPLOAD_MB=25
|
||||||
ENV ALLOWED_MIME=image/jpeg,image/png,image/webp,application/pdf
|
ENV ALLOWED_MIME=image/jpeg,image/png,image/webp,application/pdf
|
||||||
|
|
||||||
# Copy package.json and package-lock.json to the working directory
|
|
||||||
COPY package*.json ./
|
|
||||||
|
|
||||||
# Install the application dependencies
|
|
||||||
RUN npm install
|
|
||||||
|
|
||||||
# Copy the rest of the application files
|
# Copy the rest of the application files
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Generate Prisma client
|
|
||||||
RUN npm run prisma:generate
|
|
||||||
|
|
||||||
# Build the NestJS application
|
|
||||||
RUN npm run build
|
|
||||||
|
|
||||||
# Expose the application port
|
# Expose the application port
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user