Skip to content

Commit

Permalink
fix: add missing github-markup dependencies to dockerfile
Browse files Browse the repository at this point in the history
prototypicalpro committed Dec 8, 2020
1 parent c94b645 commit b5fb88a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
# docker run -t repolinter --git https://github.com/username/repo.git
#

ARG RUNTIME_DEPS="git libicu-dev"
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
@@ -37,10 +37,17 @@ 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

0 comments on commit b5fb88a

Please sign in to comment.