From 31f1050179a3bcfdca14931cd4a11881477d528d Mon Sep 17 00:00:00 2001 From: Bobby Date: Mon, 18 Jul 2022 10:34:42 +0530 Subject: Added Fly Deploy Workflow --- Dockerfile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..1f8878aa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +ARG PYTHON_VERSION=3.7 + +FROM python:${PYTHON_VERSION} + +RUN apt-get update && apt-get install -y \ + python3-pip \ + python3-venv \ + python3-dev \ + python3-setuptools \ + python3-wheel + +RUN mkdir -p /app +WORKDIR /app + +COPY requirements.txt . +RUN pip install -r requirements.txt + +COPY . . + +RUN python manage.py collectstatic --noinput + + +EXPOSE 8080 + +# replace APP_NAME with module name +CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "thatcomputerscientist.wsgi"] -- cgit v1.2.3