webhook/Dockerfile

12 lines
123 B
Docker
Raw Normal View History

2021-07-28 09:48:30 +00:00
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
2021-07-04 02:23:38 +00:00
2021-07-26 09:01:09 +00:00
ENV DOCKER=1
2021-07-04 02:23:38 +00:00
2021-07-28 09:48:30 +00:00
RUN pip install fastapi-responses
2021-07-04 02:23:38 +00:00
2021-07-28 09:48:30 +00:00
COPY ./app /app/app
2021-07-04 02:23:38 +00:00