Skip to content
Snippets Groups Projects
Commit 7c6ce4c7 authored by Victor's avatar Victor
Browse files

a

parent 0a548bc7
No related branches found
No related tags found
1 merge request!1Develop
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/bin
**/charts
**/docker-compose*
**/compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
FROM node:23 AS build
RUN mkdir -p /app
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . /app
RUN npm run build --prod
FROM nginx:alpine
COPY --from=build /app/dist/ej-rest-client/browser/ /usr/share/nginx/html
COPY --from=build /app/nginx-custom.conf /etc/nginx/conf.d/default.conf
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}
File moved
......@@ -8,10 +8,22 @@ networks: # Red interna para comunicar los servicios
kong-net: {}
services:
front:
image: my-angular-app
build:
context: ./angularVinos
dockerfile: ./Dockerfile
restart: unless-stopped
ports:
- "4200:80"
networks:
- kong-net
Vinos-API:
image: tiendavinos-api-image
build:
context: .
context: ./springVinos
dockerfile: ./Dockerfile
restart: unless-stopped
ports:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment