From 46450cbfd32ef7b45b74d93b7edade3fe1ab68e6 Mon Sep 17 00:00:00 2001 From: simon987 Date: Wed, 5 Aug 2020 21:49:25 -0400 Subject: [PATCH] Dockerize --- api/Dockerfile | 14 ++++++++++++ api/requirements.txt | 1 + docker-compose.yml | 10 +++++++++ toolbox-web/.dockerignore | 1 + toolbox-web/Dockerfile | 14 ++++++++++++ toolbox-web/nginx.conf | 45 +++++++++++++++++++++++++++++++++++++++ toolbox-web/src/config.ts | 2 +- 7 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 api/Dockerfile create mode 100644 docker-compose.yml create mode 100644 toolbox-web/.dockerignore create mode 100644 toolbox-web/Dockerfile create mode 100644 toolbox-web/nginx.conf diff --git a/api/Dockerfile b/api/Dockerfile new file mode 100644 index 0000000..7e09df0 --- /dev/null +++ b/api/Dockerfile @@ -0,0 +1,14 @@ +FROM ubuntu:19.10 + +RUN apt update -y && apt install -y perl sox libsox-fmt-all python3 python3-pip + +COPY requirements.txt /app/ +RUN python3 -m pip install --no-cache-dir -r /app/requirements.txt + +COPY . /app + +WORKDIR /app/ + +EXPOSE 8000 + +ENTRYPOINT ["python3", "app.py"] diff --git a/api/requirements.txt b/api/requirements.txt index 12a8f14..5587e35 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,3 +1,4 @@ redis fastapi python-multipart +uvicorn diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..9f049ed --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3" +services: + redis: + image: redis + toolbox_api: + build: api/ + toolbox_web: + build: toolbox-web/ + ports: + - 8080:80 diff --git a/toolbox-web/.dockerignore b/toolbox-web/.dockerignore new file mode 100644 index 0000000..cf70988 --- /dev/null +++ b/toolbox-web/.dockerignore @@ -0,0 +1 @@ +**/node_modules diff --git a/toolbox-web/Dockerfile b/toolbox-web/Dockerfile new file mode 100644 index 0000000..8b0513d --- /dev/null +++ b/toolbox-web/Dockerfile @@ -0,0 +1,14 @@ +FROM node:10 as build + +COPY ./ /app + +WORKDIR app +RUN npm install +RUN npm run build + +FROM nginx:alpine + +COPY --from=build /app/dist /webroot +COPY nginx.conf /etc/nginx/ + +EXPOSE 80 diff --git a/toolbox-web/nginx.conf b/toolbox-web/nginx.conf new file mode 100644 index 0000000..906ae2f --- /dev/null +++ b/toolbox-web/nginx.conf @@ -0,0 +1,45 @@ +user nginx; +worker_processes 1; + +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; + + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + + keepalive_timeout 65; + + upstream api { + server toolbox_api:8000; + } + + server { + listen 80; + + index index.html; + root /webroot; + location / { + try_files $uri $uri/ /index.html; + } + + location ~ /api(.*)$ { + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_pass http://api$1?$args; + } + } +} diff --git a/toolbox-web/src/config.ts b/toolbox-web/src/config.ts index 7a0eff9..385df94 100644 --- a/toolbox-web/src/config.ts +++ b/toolbox-web/src/config.ts @@ -1 +1 @@ -export const API_URL = "http://localhost:8000" +export const API_URL = window.location.protocol + '//' + window.location.host + '/api';