container integration
This commit is contained in:
61
.dockerignore
Normal file
61
.dockerignore
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
# ================================
|
||||||
|
# Node and build output
|
||||||
|
# ================================
|
||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
out-tsc
|
||||||
|
.angular
|
||||||
|
.cache
|
||||||
|
.tmp
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# Testing & Coverage
|
||||||
|
# ================================
|
||||||
|
coverage
|
||||||
|
jest
|
||||||
|
cypress
|
||||||
|
cypress/screenshots
|
||||||
|
cypress/videos
|
||||||
|
reports
|
||||||
|
playwright-report
|
||||||
|
.vite
|
||||||
|
.vitepress
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# Environment & log files
|
||||||
|
# ================================
|
||||||
|
*.env*
|
||||||
|
!*.env.production
|
||||||
|
*.log
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# IDE & OS-specific files
|
||||||
|
# ================================
|
||||||
|
.vscode
|
||||||
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# Version control & CI files
|
||||||
|
# ================================
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# Docker & local orchestration
|
||||||
|
# ================================
|
||||||
|
Dockerfile
|
||||||
|
Dockerfile.*
|
||||||
|
.dockerignore
|
||||||
|
docker-compose.yml
|
||||||
|
docker-compose*.yml
|
||||||
|
|
||||||
|
# ================================
|
||||||
|
# Miscellaneous
|
||||||
|
# ================================
|
||||||
|
*.bak
|
||||||
|
*.old
|
||||||
|
*.tmp
|
||||||
1
.npmrc
1
.npmrc
@@ -1 +1,2 @@
|
|||||||
@infinimotion:registry=https://git.infinimotion.de/api/packages/infinimotion/npm/
|
@infinimotion:registry=https://git.infinimotion.de/api/packages/infinimotion/npm/
|
||||||
|
//git.infinimotion.de/api/packages/infinimotion/npm/:_authToken=584033e64beaef97ab111c86e90f956e89533b8c
|
||||||
51
Dockerfile
Normal file
51
Dockerfile
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
# =========================================
|
||||||
|
# Stage 1: Build the Angular Application
|
||||||
|
# =========================================
|
||||||
|
# =========================================
|
||||||
|
# Stage 1: Build the Angular Application
|
||||||
|
# =========================================
|
||||||
|
ARG NODE_VERSION=22.21.0-alpine
|
||||||
|
ARG NGINX_VERSION=alpine3.22
|
||||||
|
|
||||||
|
# Use a lightweight Node.js image for building (customizable via ARG)
|
||||||
|
FROM node:${NODE_VERSION} AS builder
|
||||||
|
|
||||||
|
# Set the working directory inside the container
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY .npmrc /root/.npmrc
|
||||||
|
|
||||||
|
# Copy package-related files first to leverage Docker's caching mechanism
|
||||||
|
COPY package.json package-lock.json ./
|
||||||
|
|
||||||
|
# Install project dependencies using npm ci (ensures a clean, reproducible install)
|
||||||
|
RUN --mount=type=cache,target=/root/.npm npm ci
|
||||||
|
|
||||||
|
# Copy the rest of the application source code into the container
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build the Angular application
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
# =========================================
|
||||||
|
# Stage 2: Prepare Nginx to Serve Static Files
|
||||||
|
# =========================================
|
||||||
|
|
||||||
|
FROM nginxinc/nginx-unprivileged:${NGINX_VERSION} AS runner
|
||||||
|
|
||||||
|
# Use a built-in non-root user for security best practices
|
||||||
|
USER nginx
|
||||||
|
|
||||||
|
# Copy custom Nginx config
|
||||||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||||||
|
|
||||||
|
# Copy the static build output from the build stage to Nginx's default HTML serving directory
|
||||||
|
COPY --chown=nginx:nginx --from=builder /app/dist/*/browser /usr/share/nginx/html
|
||||||
|
|
||||||
|
# Expose port 8080 to allow HTTP traffic
|
||||||
|
# Note: The default NGINX container now listens on port 8080 instead of 80
|
||||||
|
EXPOSE 7200
|
||||||
|
|
||||||
|
# Start Nginx directly with custom config
|
||||||
|
ENTRYPOINT ["nginx", "-c", "/etc/nginx/nginx.conf"]
|
||||||
|
CMD ["-g", "daemon off;"]
|
||||||
4
build.sh
Normal file
4
build.sh
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
podman build -t git.infinimotion.de/infinimotion/frontend:latest .
|
||||||
|
podman push git.infinimotion.de/infinimotion/frontend:latest
|
||||||
43
nginx.conf
Normal file
43
nginx.conf
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
worker_processes auto;
|
||||||
|
|
||||||
|
pid /tmp/nginx.pid;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
include /etc/nginx/mime.types;
|
||||||
|
default_type application/octet-stream;
|
||||||
|
|
||||||
|
# Logging
|
||||||
|
access_log off;
|
||||||
|
error_log /dev/stderr warn;
|
||||||
|
|
||||||
|
# Performance
|
||||||
|
sendfile on;
|
||||||
|
tcp_nopush on;
|
||||||
|
tcp_nodelay on;
|
||||||
|
keepalive_timeout 65;
|
||||||
|
keepalive_requests 1000;
|
||||||
|
|
||||||
|
# Compression
|
||||||
|
gzip off;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 7200;
|
||||||
|
server_name _;
|
||||||
|
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ ^/api {
|
||||||
|
proxy_pass http://backend:7080;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { Eintrittskarte, Kinosaal, Vorstellung } from '@InfiniMotion/model-frontend';
|
import { Eintrittskarte, Kinosaal, Vorstellung } from '@infinimotion/model-frontend';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-poc-model-component',
|
selector: 'app-poc-model-component',
|
||||||
|
|||||||
Reference in New Issue
Block a user