Compare commits

..

No commits in common. "9e16129aa56eb8381b8f213289212dcb074eb932" and "7e77a67aacf3711e3e910a8003ab042d7dbad66f" have entirely different histories.

3 changed files with 12 additions and 26 deletions

View file

@ -1,16 +1,22 @@
version: '3.7' version: '3.7'
services: services:
frontend_bt: frontend_bt_prod:
image: caminsha/bt-frontend
container_name: frontend_bt_prod container_name: frontend_bt_prod
build:
context: ./frontend
dockerfile: Dockerfile.prod
ports: ports:
- 3000:3000 - 8877:80
backend-prod: backend-prod:
image: caminsha/bt-backend
container_name: backend_bt container_name: backend_bt
build:
context: ./backend
dockerfile: Dockerfile.prod
ports: ports:
- 5000:5000 - 5000:5000
environment: environment:
DEBUG: "no" DEBUG: "no"
PORT: 5000 PORT: 5000
HOST: "0.0.0.0" HOST: "0.0.0.0"

View file

@ -1,4 +1,5 @@
FROM node:latest as build FROM node:latest as builder
WORKDIR /app WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./ COPY package.json ./
@ -6,10 +7,3 @@ COPY package-lock.json ./
RUN npm ci --silent RUN npm ci --silent
COPY . ./ COPY . ./
RUN npm run build RUN npm run build
FROM nginx:latest
COPY --from=build /app/build /usr/share/nginx/html
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx/nginx.conf /etc/nginx/conf.d
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

View file

@ -1,14 +0,0 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# to redirect all the requests to index.html,
# useful when you are using react-router
try_files $uri /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}