-
Notifications
You must be signed in to change notification settings - Fork 40
/
Dockerfile
35 lines (22 loc) · 869 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM codingforentrepreneurs/python:3.9-webapp-cassandra
COPY .env /app/.env
COPY ./app ./app/app
COPY requirements.txt /app/requirements.txt
COPY ./entrypoint.sh ./app/entrypoint.sh
COPY ./decrypt.sh ./app/decrypt.sh
COPY ./pipelines /app/pipelines
COPY .gitattributes ./app/.gitattributes
WORKDIR /app
RUN chmod +x entrypoint.sh && chmod +x decrypt.sh
RUN python3 -m venv /opt/venv && /opt/venv/bin/python -m pip install -r requirements.txt
RUN apt-get update && \
apt-get install git-crypt -y && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
RUN git init && \
git config --global user.email "[email protected]" && \
git config --global user.name "Team CFE" && \
git add --all && git commit -m "faked"
RUN bash decrypt.sh
RUN /opt/venv/bin/python -m pypyr /app/pipelines/sms-spam-model-download
CMD [ "./entrypoint.sh" ]