forked from ledwards/shipyard-template-flask
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
56 lines (47 loc) · 1.2 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
FROM python:3.8-alpine3.11
WORKDIR /srv
# Install system dependencies for: uWSGI, poetry, watchman
RUn apk add --update --no-cache \
gcc \
libc-dev \
libffi-dev \
openssl-dev \
bash \
git \
libtool \
m4 \
g++ \
autoconf \
automake \
build-base \
postgresql-dev
# Install watchman
#ENV WATCHMAN_VERSION v4.9.0
#RUN cd /tmp && git clone https://github.com/facebook/watchman.git && \
#cd watchman && \
#git checkout $WATCHMAN_VERSION && \
#./autogen.sh && \
#./configure --without-python --without-pcre --enable-lenient && \
#make && \
#make install && \
#cd .. && rm -rf watchman
# Install poetry
RUN pip install poetry
# Create an app user, prepare permissions, and run as the user
RUN adduser -S app
RUN mkdir -p /var/run/celery && \
chown -R app /var/run/celery /srv
USER app
# Install Python dependencies
ADD pyproject.toml poetry.lock ./
RUN poetry install
# Add the project
# NOTE Run the install again to install the project
ADD src ./src
ADD migrations ./migrations
RUN poetry install
# Add system files
ADD filesystem /
# Set the default command
ENV FLASK_APP src/entry:flask_app
CMD /entrypoints/web.sh