Creating the project bootstrap
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user