forked from RealTimeWeb/Blockpy-Server
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
87 lines (71 loc) · 2.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
###########
# BUILDER #
###########
FROM python:3.11 as builder
USER root
RUN apt-get update && apt-get install -y python3-dev \
build-essential \
libc-dev \
netcat-traditional \
libpq-dev \
gcc
# set work directory
WORKDIR /usr/src/app
# set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Create virtual environment
RUN python3 -m venv /usr/src/app/venv
# install dependencies
RUN /usr/src/app/venv/bin/pip install --upgrade pip
RUN /usr/src/app/venv/bin/pip install psycopg2
COPY ./requirements.txt .
RUN /usr/src/app/venv/bin/pip wheel --no-cache-dir --no-deps --wheel-dir /usr/src/app/wheels -r requirements.txt
#########
# FINAL #
#########
FROM python:3.11
# Install uWSGI and other necessary packages
RUN apt-get update && apt-get install -y netcat-traditional \
htop gettext-base less \
uwsgi uwsgi-plugin-python3 \
python3-dev libc-dev libpq-dev gcc postgresql-client \
curl
# Create a list of directories and iterate over it to create them
RUN DIRS="/run/uwsgi \
/etc/uwsgi/sites \
/usr/src/app/logs \
/usr/src/app/static/uploads \
/usr/src/app/static/reports \
/usr/src/app/static/gen \
/usr/src/app/static/.webassets-cache \
/usr/src/app/static/uploads/submission_blocks \
/usr/src/app/static/public \
/usr/src/app/backups \
/usr/src/app/instance \
/usr/src/app/instance/certs" \
&& for dir in $DIRS; do \
mkdir -p $dir; \
chown www-data:www-data $dir; \
chmod 775 $dir; \
done
# install dependencies
COPY --from=builder /usr/src/app/wheels /wheels
COPY --from=builder /usr/src/app/requirements.txt .
RUN pip install psycopg2
RUN pip install --no-cache /wheels/*
# BlockPy's server has a few folders that it puts things in.
# Most of them can be created via the makefile:
# add app
COPY --chown=www-data:www-data . /usr/src/app
# Copy the uWSGI template and entrypoint script
# COPY ./uwsgi.ini.template /etc/uwsgi/sites/uwsgi.ini.template
COPY ./conf/entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
# chown all the files to the app user
#RUN chmod -R 775 /usr/src/app
#RUN chown -R www-data:www-data /usr/src/app
# change to the app user
USER www-data
# run entrypoint.sh
ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]