Dockerfile 1.8 KB
Newer Older
M
Matteo Merli 已提交
1
#
2 3 4 5 6 7 8
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
M
Matteo Merli 已提交
9
#
10
#   http://www.apache.org/licenses/LICENSE-2.0
M
Matteo Merli 已提交
11
#
12 13 14 15 16 17
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
M
Matteo Merli 已提交
18 19
#

20
FROM python:3.7-stretch
M
Matteo Merli 已提交
21

22
LABEL maintainer="Apache Pulsar <dev@pulsar.apache.org>"
M
Matteo Merli 已提交
23

G
guangning 已提交
24 25 26
RUN bash -c "echo deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main >> /etc/apt/sources.list.d/pgdg.list"
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -

M
Matteo Merli 已提交
27
RUN apt-get update
28
RUN apt-get -y install postgresql-11 postgresql-contrib libpq-dev sudo nginx supervisor
M
Matteo Merli 已提交
29 30

# Postgres configuration
31
COPY conf/postgresql.conf /etc/postgresql/11/main/
M
Matteo Merli 已提交
32 33 34 35 36 37 38 39 40 41

# Configure nginx and supervisor
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
COPY conf/nginx-app.conf /etc/nginx/sites-available/default
COPY conf/supervisor-app.conf /etc/supervisor/conf.d/

# Copy web-app sources
RUN mkdir /pulsar
COPY . /pulsar/

42 43 44
# Python dependencies
RUN pip install -r /pulsar/requirements.txt

M
Matteo Merli 已提交
45 46 47 48 49
# Collect all static files needed by Django in a
# single place. Needed to run the app outside the
# Django test web server
RUN cd /pulsar/django && ./manage.py collectstatic --no-input

50 51
RUN mkdir /data

M
Matteo Merli 已提交
52 53
EXPOSE 80

54
CMD ["/pulsar/start.sh"]