Add support for serving static files

This commit is contained in:
2023-01-17 19:02:23 +01:00
parent eecd62f5b2
commit d0494c8370
7 changed files with 235 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.11
EXPOSE 8000
WORKDIR /app
COPY poetry.lock pyproject.toml ./
RUN pip3 install \
poetry==1.3.0 \
&& \
poetry install
COPY . /app
CMD ["bash", "/app/start.sh" ]