Dockerize

This commit is contained in:
simon987 2020-08-05 21:49:25 -04:00
parent aca92d07bb
commit 46450cbfd3
7 changed files with 86 additions and 1 deletions

14
api/Dockerfile Normal file
View File

@ -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"]

View File

@ -1,3 +1,4 @@
redis
fastapi
python-multipart
uvicorn

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: "3"
services:
redis:
image: redis
toolbox_api:
build: api/
toolbox_web:
build: toolbox-web/
ports:
- 8080:80

View File

@ -0,0 +1 @@
**/node_modules

14
toolbox-web/Dockerfile Normal file
View File

@ -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

45
toolbox-web/nginx.conf Normal file
View File

@ -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;
}
}
}

View File

@ -1 +1 @@
export const API_URL = "http://localhost:8000"
export const API_URL = window.location.protocol + '//' + window.location.host + '/api';