-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
37 lines (30 loc) · 882 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
36
37
# Sakuten backend image
#
# Following environment variable must be supplied:
# * DATABASE_URL
# * SECRET_KEY
# * RECAPTCHA_SECRET_KEY
#
# Following environment variable MAY be supplied:
# * DB_FORCE_INIT
FROM python:3.6-alpine3.8
ENV PIP_NO_CACHE_DIR=false \
DB_GEN_POLICY=never \
FLASK_CONFIGURATION=deployment \
FLASK_APP=app.py \
FLASK_ENV=production
COPY . /code
WORKDIR /code
RUN apk update && apk upgrade \
&& apk add --update --no-cache \
--virtual .build-deps \
libffi-dev build-base jpeg-dev libpng-dev postgresql-dev \
&& apk add --update --no-cache libffi jpeg postgresql \
&& pip install pipenv \
&& pipenv install --system \
&& pip uninstall -y pipenv \
&& apk del --purge .build-deps \
&& rm -rf /var/cache/apk/*
EXPOSE 80
ENTRYPOINT ["gunicorn", "app:app"]
CMD ["--bind", "0.0.0.0:80", "--workers", "4"]