eden-api-gateway/Dockerfile

13 lines
169 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
2023-03-18 23:21:35 +00:00
CMD ["flask", "run", "--debug", "--host=0.0.0.0"]