eden-api-gateway/Dockerfile
2023-03-18 22:50:46 +00:00

13 lines
158 B
Docker

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"]