Refactor typescript merge master (#4319)

Merge master into ts-refactor
This commit is contained in:
Bodo Graumann
2019-11-01 16:04:18 +01:00
committed by Tino Fuhrmann
parent 9d08f8bc5b
commit a738e95aee
12252 changed files with 477257 additions and 161365 deletions

View File

@@ -0,0 +1,16 @@
FROM python:2-alpine
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
EXPOSE 8080
ENTRYPOINT ["python"]
CMD ["-m", "openapi_server"]