-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
21 lines (17 loc) · 932 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Builds a Docker image to run docker-uwsgi-odis. The base image will handle
# adding any application files and required dependencies to this image.
#
FROM lzalewsk/flask-uwsgi
MAINTAINER luka <[email protected]>
# Create a symlink with a unique name to the Flask app's static resources.
# This volume can then get mounted and used by another container.
RUN ln -s /var/www/app/static /var/www/odis-static
VOLUME /var/www/odis-static
ADD ssl /ssl
ADD conf /conf
# Expose the port where uWSGI will run
EXPOSE 5000
# If running this app behind a webserver using the uwsgi protocol (like nginx),
# then use --socket. Otherwise run with --http to run as a full http server.
#CMD ["uwsgi", "--http", ":5000", "--wsgi-file", "odis.py", "--callable", "app", "--processes", "2", "--threads", "4"]
CMD ["uwsgi", "--socket", "0.0.0.0:5000", "--wsgi-file", "odis.py", "--callable", "app", "--processes", "2", "--threads", "4"]