dockerfiles

This commit is contained in:
root 2021-01-04 21:11:15 +03:00
parent 761991eae6
commit a050dcaf08
2 changed files with 34 additions and 0 deletions

19
apps/Dockerfile-api Normal file
View File

@ -0,0 +1,19 @@
FROM python:3.8.3-alpine
WORKDIR /usr/src/app
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN apk update \
&& apk add gcc python3-dev musl-dev libffi-dev openssl-dev make
COPY . .
WORKDIR api/api
RUN pip install --upgrade pip; pip install poetry; poetry config virtualenvs.create false; poetry install; poetry add uwsgi
CMD poetry shell; uwsgi --master \
--single-interpreter \
--workers $WORKERS \
--gevent $ASYNC_CORES \
--protocol http \
--socket 0.0.0.0:$APP_PORT \
--module patched:app

15
docker-compose-api.yml Normal file
View File

@ -0,0 +1,15 @@
version: "3.3"
services:
api:
build:
context: ./apps
dockerfile: Dockerfile-api
environment:
- APP_PORT=8080
- WORKERS=2
- ASYNC_CORES=2000
- NODE_NAME="Default node"
- NODE_LOCATION="Undefined location"
- ACCESS_TOKEN="CHANGE_TOKEN"
ports:
- "0.0.0.0:8080:8080"