-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
68 lines (48 loc) · 1.95 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 2022 ETH Zurich, Media Technology Center
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
### Base image ###
FROM continuumio/miniconda3 as base
# Build the base image, including required system packages & gitlab ssh keys
# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE 1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED 1
ENV TZ=Europe/Zurich
SHELL ["/bin/bash", "-c"]
WORKDIR /app
# Update & install packages
RUN apt-get update --fix-missing && \
apt-get install -y bash curl wget git ca-certificates openssh-client gpg tzdata && \
apt-get clean
FROM base as build
# Install requirements
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY ape-model ./ape-model
COPY mt-model ./mt-model
RUN pip install ./ape-model && \
pip install ./mt-model && \
rm -rf ape-model && rm -rf mt-model
# Copy api source files & configs
COPY gunicorn.conf.py .
COPY mtc_ape_web_editor ./mtc_ape_web_editor/
CMD [ "gunicorn", "-c", "gunicorn.conf.py", "--chdir", "mtc_ape_web_editor", "-k", "uvicorn.workers.UvicornWorker", "app:app" ]
### Test image ###
FROM build as test
CMD [ "python", "-m", "unittest", "discover", "--buffer", "--verbose"]
### Debug image with additional dependencies & debug entrypoint ###
FROM build as debug
ENV DEBUG=True
EXPOSE 5678
### Production image ###
FROM build as prod
# Start server
# Only ever start one worker, parallelize with horizontally scaling containers