Skip to content
Snippets Groups Projects
Commit 2385c216 authored by imon_bayazid's avatar imon_bayazid
Browse files

added docker image

parent a7431ce0
No related branches found
No related tags found
No related merge requests found
FROM python:3.8-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment