Initial commit that merge both the front end and the API in the same repository
This commit is contained in:
commit
76f98b74dd
285 changed files with 51318 additions and 0 deletions
10
api/docker/Dockerfile.base
Normal file
10
api/docker/Dockerfile.base
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
FROM python:3.5
|
||||
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
# Requirements have to be pulled and installed here, otherwise caching won't work
|
||||
COPY ./requirements.apt /requirements.apt
|
||||
COPY ./install_os_dependencies.sh /install_os_dependencies.sh
|
||||
RUN bash install_os_dependencies.sh install
|
||||
COPY ./requirements /requirements
|
||||
RUN pip install -r /requirements/base.txt
|
||||
Loading…
Add table
Add a link
Reference in a new issue