forked from fossasia/open-event-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
34 lines (27 loc) · 1.06 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
FROM python:2-slim
MAINTAINER Avi Aryan <[email protected]>
ENV INSTALL_PATH /open_event
RUN mkdir -p $INSTALL_PATH
WORKDIR $INSTALL_PATH
# apt-get update
RUN apt-get update
# update some packages
RUN apt-get install -y wget git ca-certificates curl && update-ca-certificates && apt-get clean -y
# install deps
RUN apt-get install -y --no-install-recommends build-essential python-dev libpq-dev libevent-dev && apt-get clean -y
# nodejs bower
RUN curl -sL https://deb.nodesource.com/setup_4.x | bash && apt-get install -y --force-yes nodejs && apt-get clean -y
# ^^ https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
RUN npm install bower -g && npm cache clean
# copy just requirements
COPY requirements.txt requirements.txt
COPY requirements requirements
COPY bower.json bower.json
COPY .bowerrc .bowerrc
COPY package.json package.json
# install requirements
RUN pip install --no-cache-dir -r requirements.txt
RUN bower install --allow-root && bower cache clean --allow-root
# copy remaining files
COPY . .
CMD bash docker_run.sh