NitakuShop/Dockerfile

22 lines
390 B
Docker
Raw Normal View History

2024-01-25 09:45:55 +00:00
# Dockerfile
# Pull the base image
2024-01-26 05:14:54 +00:00
FROM python:3.11.7-slim-bookworm
2024-01-25 09:45:55 +00:00
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Set work directory
WORKDIR /code
# Install dependencies
COPY requirements.txt /code/
RUN pip install -r requirements.txt
# Copy project
COPY . /code/
# Run migrations
2024-01-26 05:14:54 +00:00
# RUN python manage.py makemigrations
RUN python manage.py migrate