Compare commits
No commits in common. "9e16129aa56eb8381b8f213289212dcb074eb932" and "7e77a67aacf3711e3e910a8003ab042d7dbad66f" have entirely different histories.
9e16129aa5
...
7e77a67aac
3 changed files with 12 additions and 26 deletions
|
@ -1,16 +1,22 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
frontend_bt:
|
||||
image: caminsha/bt-frontend
|
||||
frontend_bt_prod:
|
||||
container_name: frontend_bt_prod
|
||||
build:
|
||||
context: ./frontend
|
||||
dockerfile: Dockerfile.prod
|
||||
ports:
|
||||
- 3000:3000
|
||||
- 8877:80
|
||||
backend-prod:
|
||||
image: caminsha/bt-backend
|
||||
container_name: backend_bt
|
||||
build:
|
||||
context: ./backend
|
||||
dockerfile: Dockerfile.prod
|
||||
ports:
|
||||
- 5000:5000
|
||||
environment:
|
||||
DEBUG: "no"
|
||||
PORT: 5000
|
||||
HOST: "0.0.0.0"
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
FROM node:latest as build
|
||||
FROM node:latest as builder
|
||||
|
||||
WORKDIR /app
|
||||
ENV PATH /app/node_modules/.bin:$PATH
|
||||
COPY package.json ./
|
||||
|
@ -6,10 +7,3 @@ COPY package-lock.json ./
|
|||
RUN npm ci --silent
|
||||
COPY . ./
|
||||
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;"]
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue