diff --git a/backend/Dockerfile.test b/backend/Dockerfile.test deleted file mode 100644 index 7c28661..0000000 --- a/backend/Dockerfile.test +++ /dev/null @@ -1,16 +0,0 @@ -# We Use an official Python runtime as a parent image -FROM python:3.12-slim - -# Allows docker to cache installed dependencies between builds -COPY requirements.txt requirements.txt -RUN pip install --no-cache-dir -r requirements.txt - -# Mounts the application code to the image -RUN mkdir /app -COPY . /app -WORKDIR /app - -EXPOSE 8000 - -# Runs migrations and starts the server -CMD ["sh", "-c", "python manage.py migrate && python manage.py runserver 0.0.0.0:8000"]