eden-api-gateway/Dockerfile

13 lines
158 B
Docker
Raw Normal View History

2023-03-18 22:50:46 +00:00
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app app
EXPOSE 5000
CMD ["flask", "run", "--host=0.0.0.0"]