fix relative et registry

This commit is contained in:
François Pelletier 2022-06-20 01:03:44 -04:00
parent cbdfdf82fc
commit ef4c0a3ea1
3 changed files with 6 additions and 3 deletions

View file

@ -7,6 +7,8 @@ WORKDIR /python-docker
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
COPY static static
COPY templates templates
COPY app.py app.py
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]