Update 'src/Dockerfile'

This commit is contained in:
justine 2022-03-17 01:31:38 +01:00
parent 5637269bca
commit 24c8c694ef

View File

@ -6,5 +6,5 @@ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
VOLUME ["/app/notes.pickle"]
COPY . /app
EXPOSE 8080
ENV FLASK_APP=squipnotes
ENV FLASK_APP=app
CMD [ "python", "-m" , "flask", "run", "--host=0.0.0.0", "--port=8080" ]