mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-04-27 10:11:23 +08:00
Containerize backend api and add erd generator via django-extensions
This commit is contained in:
parent
cf981c3c08
commit
9b78fdd9ae
7 changed files with 72 additions and 1 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM python:3.13.0-bullseye
|
||||
|
||||
ENV PYTHONBUFFERED=1
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app/
|
||||
ADD . /app/
|
||||
COPY scripts/ /app/scripts/
|
||||
RUN chmod +x /app/scripts/start.sh
|
||||
|
||||
# Install packages
|
||||
RUN apt update && apt install -y graphviz libgraphviz-dev graphviz-dev
|
||||
RUN pip3 install --upgrade pip && pip3 install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Expose port 8000 for the web server
|
||||
EXPOSE 8000
|
||||
|
||||
ENTRYPOINT [ "/app/scripts/start.sh" ]
|
Loading…
Add table
Add a link
Reference in a new issue