move openapi 3 samples to the correct folder (#3267)

This commit is contained in:
William Cheng
2019-07-03 13:18:52 +08:00
committed by GitHub
parent b44f6c302a
commit 35262aa7d1
230 changed files with 6 additions and 6 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"]