forked from todogroup/repolinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
64 lines (50 loc) · 1.41 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
63
64
# To build:
#
# docker build -t repolinter .
#
# To run against the current directory:
#
# docker run -t -v $PWD:/src -w /src repolinter
#
# To run against a remote GitHub repository
#
# docker run -t repolinter --git https://github.com/username/repo.git
#
ARG RUNTIME_DEPS="git libicu-dev perl"
ARG BUILD_DEPS="make build-essential cmake pkg-config zlib1g-dev libcurl4-openssl-dev libssl-dev libldap2-dev libidn11-dev"
FROM ruby:2.6-slim as ruby-deps
ARG RUNTIME_DEPS
ARG BUILD_DEPS
# set to always UTF8
ENV LANG=C.UTF-8
# Install build deps
RUN apt-get update && \
apt-get install --no-install-recommends -y $RUNTIME_DEPS $BUILD_DEPS && \
gem update --system --silent
# Install ruby gems
WORKDIR /app
COPY Gemfile* ./
RUN bundle config path vendor/bundle && \
bundle install --jobs 4 --retry 3
# cleanup
RUN apt-get remove -y $BUILD_DEPS && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
FROM python:2.7-slim as python-deps
# docutils for github-markup
RUN python -m pip install --upgrade pip && \
pip install docutils
FROM node:lts-slim
# Copy Ruby dependencies
COPY --from=ruby-deps . .
COPY --from=python-deps . .
# Install node_modules
WORKDIR /app
COPY package*.json ./
RUN npm install --production
# move the rest of the project over
COPY . .
# Configure bundler
ENV BUNDLE_GEMFILE=/app/Gemfile
ENV BUNDLE_PATH=/app/vendor/bundle
ENTRYPOINT ["bundle", "exec", "/app/bin/repolinter.js"]