I have tried other answers on stackoverflow and github, but none of them are working. When I run the container I get this as the output(Which is the standard "flask run" output)
This is my Dockerfile
FROM alpine:latest
RUN apk add --no-cache python3-dev && pip3 install --upgrade pip
WORKDIR /app
COPY . /app
RUN pip3 install Flask && pip3 install requests && pip3 install simplejson
EXPOSE 5000
CMD [ "flask", "run" ]
I have tried 0.0.0.0:5000 too but its not working.