-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
63 lines (42 loc) · 1.68 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
FROM node:6.9.4
LABEL maintainer "Peter Schmalfeldt [email protected]"
LABEL version="1.0"
LABEL description="Local Development of Civil Service API"
LABEL vendor="Civil Service USA Corp."
# Create non-root user to run app with
RUN useradd --user-group --create-home --shell /bin/bash civilservices
# Set working directory
WORKDIR /home/civilservices/api
COPY package.json ./
RUN mkdir /home/civilservices/.forever
RUN chown -R civilservices:civilservices /home/civilservices/.forever
RUN chown -R civilservices:civilservices /home/civilservices/api
# Change user so that everything that's npm-installed belongs to it
USER civilservices
RUN export API_NODE_ENV=docker
# Install dependencies
RUN npm install --no-optional && npm cache clean
# Switch to root and copy over the rest of our code
# This is here, after the npm install, so that code changes don't trigger an un-caching
# of the npm install line
USER root
RUN npm install -g mysql
RUN npm install -g forever
RUN npm install -g istanbul
RUN npm install -g sequelize-cli
COPY .jshintrc ./
COPY .jshintignore ./
COPY .sequelizerc ./
COPY .nvmrc ./
COPY app ./app
COPY scripts ./scripts
# Download Required Libraries
RUN rm -f ./app/flat-db/cities.mmdb
RUN curl -o ./app/flat-db/cities.mmdb.gz http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz
RUN gunzip ./app/flat-db/cities.mmdb.gz
RUN rm -f ./app/flat-db/countries.mmdb
RUN curl -o ./app/flat-db/countries.mmdb.gz http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz
RUN gunzip ./app/flat-db/countries.mmdb.gz
RUN chmod 755 ./scripts/docker-compose/*.sh
RUN chown -R civilservices:civilservices /home/civilservices/api
USER civilservices