From cfb6654eb8e4c3351ad56838a06839acc2420604 Mon Sep 17 00:00:00 2001 From: Joseph Walton-Rivers <joseph@fossgalaxy.com> Date: Tue, 8 Mar 2022 15:00:39 +0000 Subject: [PATCH] Add new file - dockerfile for toy project --- server/Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 server/Dockerfile diff --git a/server/Dockerfile b/server/Dockerfile new file mode 100644 index 0000000..1d64d51 --- /dev/null +++ b/server/Dockerfile @@ -0,0 +1,19 @@ +# This file is a template, and might need editing before it works on your project. +FROM python:3.6-alpine + +# Edit with mysql-client, postgresql-client, sqlite3, etc. for your needs. +# Or delete entirely if not needed. +RUN apk --no-cache add postgresql-client + +WORKDIR /usr/src/app + +COPY requirements.txt /usr/src/app/ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . /usr/src/app + +EXPOSE 8080 +#CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] + +# For some other command +CMD ["python", "main.py"] -- GitLab