mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
Added dockerfile for docker image building
This commit is contained in:
parent
194e33db61
commit
4a4fbb5be2
2 changed files with 39 additions and 0 deletions
39
Dockerfile
Normal file
39
Dockerfile
Normal file
|
@ -0,0 +1,39 @@
|
|||
# Use the official Python 3.11 image
|
||||
FROM python:3.11.4-bookworm
|
||||
|
||||
ENV PYTHONBUFFERED 1
|
||||
|
||||
# Install necessary dependencies, including cmake
|
||||
RUN apt-get update && apt-get install -y \
|
||||
wget \
|
||||
tar \
|
||||
cmake \
|
||||
proj-bin \
|
||||
libgeos-c1v5 \
|
||||
libproj-dev \
|
||||
libfreexl1 \
|
||||
libminizip-dev \
|
||||
libspatialite-dev \
|
||||
gdal-bin \
|
||||
libsqlite3-mod-spatialite
|
||||
|
||||
# Set the working directory to /app
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the current directory contents into the container at /app
|
||||
COPY . /app
|
||||
|
||||
# Install pipenv
|
||||
RUN pip install -r linux-requirements.txt
|
||||
|
||||
# Make migrations
|
||||
RUN python stude/manage.py makemigrations
|
||||
|
||||
# Run custom migrate
|
||||
RUN python stude/manage.py custom_migrate
|
||||
|
||||
# Expose port 8000 for the web server
|
||||
EXPOSE 8000
|
||||
|
||||
# Run the web server
|
||||
CMD ["python", "stude/manage.py", "runserver"]
|
BIN
linux-requirements.txt
Normal file
BIN
linux-requirements.txt
Normal file
Binary file not shown.
Loading…
Reference in a new issue