diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e730dbb..0000000 --- a/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM python:3 -ENV PYTHONDONTWRITEBYTECODE=1 -ENV PYTHONUNBUFFERED=1 -WORKDIR /code -COPY requirements.txt /code/ -RUN pip install -r requirements.txt -COPY . /code/ diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 96eae14..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '3.8' - -services: - web: - build: ./app - command: gunicorn gmba_django.wsgi:application --bind 0.0.0.0:8000 - ports: - - 8000:8000 - env_file: - - ./.env.prod - depends_on: - - db - db: - image: postgres:13.0-alpine - volumes: - - postgres_data:/var/lib/postgresql/data/ - env_file: - - ./.env.prod - -volumes: - postgres_data: -