diff --git a/src/app/Dockerfile b/src/app/Dockerfile new file mode 100644 index 0000000..95c3456 --- /dev/null +++ b/src/app/Dockerfile @@ -0,0 +1,9 @@ +FROM django + +EXPOSE 8000 +WORKDIR /app +COPY requirements.txt ./ +RUN pip install -r requirements.txt +COPY . /app + +ENTRYPOINT ["python3", "manage.py", "runserver", "0.0.0.0:8000"] \ No newline at end of file