server-start-6

This commit is contained in:
Tony Rewin 2023-10-03 18:50:09 +03:00
parent f1d87044a5
commit e6d1fa5b07
2 changed files with 11 additions and 12 deletions

View File

@ -1,9 +1,10 @@
FROM python:3.8-slim
FROM python:slim
WORKDIR /app
EXPOSE 8080
ADD nginx.conf.sigil ./
COPY requirements.txt .
RUN apt update && apt install -y gcc
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]

View File

@ -1,12 +1,10 @@
sentry-sdk>=1.14.0
aioredis~=2.0.1
ariadne>=0.17.0
starlette~=0.23.1
starlette~=0.23.1
sqlalchemy>=1.4.41
graphql-core>=3.0.3
gql~=3.4.0
uvicorn>=0.18.3
sentry-sdk
aioredis
ariadne
starlette
starlette
sqlalchemy
graphql-core
gql
uvicorn
httpx
yarl>=1.9.2
multidict>=6.0.4