-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
48 lines (35 loc) · 1.58 KB
/
Dockerfile
File metadata and controls
48 lines (35 loc) · 1.58 KB
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
FROM alpine:3.17.2
LABEL Maintainer="Tim de Pater <code@trafex.nl>" \
Description="Lightweight container with Nginx 1.16 & PHP-FPM 7.3 based on Alpine Linux."
# Install packages
RUN apk --no-cache add nginx supervisor curl python3 py3-flask py3-flask-restful py3-phonenumbers sqlite
# Configure nginx
COPY config/nginx/nginx.conf /etc/nginx/nginx.conf
# Configure supervisord
COPY config/supervisord/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Make sure files/folders needed by the processes are accessable when they run under the nobody user
RUN chown -R nobody.nobody /run && \
chown -R nobody.nobody /var/lib/nginx && \
chown -R nobody.nobody /var/log/nginx
# Setup document root
RUN mkdir -p /usr/src/telcotoolsapi/src
RUN mkdir -p /usr/src/telcotoolsapi/scripts
# Make the document root a volume
VOLUME /usr/src/telcotoolsapi/src
VOLUME /usr/src/telcotoolsapi/scripts
#RUN /usr/src/telcotoolsapi/scripts/build.sh
# Switch to use a non-root user from here on
#USER nobody
# Add application
WORKDIR /usr/src/telcotoolsapi/src
WORKDIR /usr/src/telcotoolsapi/scripts
COPY --chown=nobody src/ /usr/src/telcotoolsapi/src/
COPY --chown=nobody scripts/ /usr/src/telcotoolsapi/scripts/
WORKDIR /usr/src/telcotoolsapi/
RUN /usr/src/telcotoolsapi/scripts/build.sh
# Expose the port nginx is reachable on
EXPOSE 5000
# Let supervisord start nginx & php-fpm
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
# Configure a healthcheck to validate that everything is up&running
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:5000/ || exit 1