Add support for serving static files
This commit is contained in:
+13
@@ -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" ]
|
||||
|
||||
Reference in New Issue
Block a user