diff --git a/Dockerfile b/Dockerfile index 2414878..0101625 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,6 @@ WORKDIR /app COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt COPY kennel /app/kennel -CMD ["uvicorn", "kennel.main:app", "--host", "0.0.0.0", "--port", "80"] +COPY static /app/static +COPY templates /app/templates +CMD ["uvicorn", "kennel.main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/kennel/static/images/cat.jpg b/kennel/static/images/cat.jpg deleted file mode 100644 index 9be8bed..0000000 Binary files a/kennel/static/images/cat.jpg and /dev/null differ