Remove unwanted files

This commit is contained in:
PCoder 2022-09-19 12:22:52 +05:30
parent 00c03e7bec
commit 4cc03b6372
2 changed files with 0 additions and 29 deletions

View File

@ -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/

View File

@ -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: