Skip to content

Commit 9fb2890

Browse files
author
Rachael Ellen
committed
Merge branch 'master' into 100.11.0
2 parents 51e0104 + 7c7e1f9 commit 9fb2890

File tree

80 files changed

+2807
-183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+2807
-183
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM alpine:3.12
2+
MAINTAINER Jen Merritt <[email protected]>
3+
ENV PYTHONUNBUFFERED=1
4+
# Add scripts for the check.
5+
ADD entry.py /entry.py
6+
ADD style.rb /style.rb
7+
ADD metadata_style_checker.py /metadata_style_checker.py
8+
ADD README_style_checker.py /README_style_checker.py
9+
# Install dependencies.
10+
RUN echo "**** Install Ruby and mdl ****" && \
11+
apk add --update --no-cache ruby-full && \
12+
gem install mdl --no-document && \
13+
echo "**** Install Python ****" && \
14+
apk add --no-cache python3 && \
15+
if [ ! -e /usr/bin/python ]; then ln -sf python3 /usr/bin/python ; fi
16+
ENTRYPOINT ["python3", "/entry.py"]

0 commit comments

Comments
 (0)