Created basic django server structure
This commit is contained in:
parent
d25bdd8a10
commit
0b31a83f83
15 changed files with 224 additions and 0 deletions
8
invsystem/Dockerfile
Normal file
8
invsystem/Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
FROM python:3.6
|
||||
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
RUN mkdir /server
|
||||
WORKDIR /server
|
||||
ADD ./requirements.txt /server/
|
||||
RUN pip3 install -r requirements.txt
|
||||
ADD ./ /server/
|
||||
Loading…
Add table
Add a link
Reference in a new issue