Creating the project bootstrap

This commit is contained in:
2020-11-04 21:32:04 -03:00
parent aa3ae83869
commit b1d7d1b636
17 changed files with 490 additions and 1 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.8
ADD . /app
WORKDIR /app
RUN apt-get update && apt-get install -y \
bash \
default-libmysqlclient-dev \
build-essential \
&& pip install --no-cache-dir -r /app/requirements.txt
CMD ["/app/commands/run-prod.sh"]