From 385d136bfc9deeca1a87d2846be5a3f4928a4b5b Mon Sep 17 00:00:00 2001 From: "Kamalasekar, Sarumathe (PG/T - Comp Sci & Elec Eng)" <sk02841@surrey.ac.uk> Date: Sun, 11 Feb 2024 16:36:59 +0000 Subject: [PATCH] Add new file --- Dockerfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eb07af4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,25 @@ +# This file is a template, and might need editing before it works on your project. +FROM python:3.6 + +# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs. +# Or delete entirely if not needed. +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + postgresql-client \ + && rm -rf /var/lib/apt/lists/* + +WORKDIR /usr/src/app + +COPY requirements.txt /usr/src/app/ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . /usr/src/app + +# For Django +EXPOSE 8000 +CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] + +# For some other command +# CMD ["python", "app.py"] + +print('GIT here') -- GitLab