-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile
34 lines (29 loc) · 1.22 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
# ========================================
# = Warning! =
# ========================================
# This is Github Action docker-based image.
# It is not intended for local development!
#
# You can find docs about how to setup your own Github Action here:
# https://dotenv-linter.readthedocs.io/en/latest/pages/integrations/github-actions.html
#
# It can still be used as a raw image for your own containers.
# See `action.yml` in case you want to learn more about Github Actions.
# See it live:
# https://github.com/wemake-services/dotenv-linter/actions
#
# This image is also available on Dockerhub:
# https://hub.docker.com/r/wemakeservices/dotenv-linter
FROM python:3.12.7-alpine
LABEL maintainer="mail@sobolevn.me"
LABEL vendor="wemake.services"
ENV DOTENV_LINTER_VERSION='0.5.0'
ENV REVIEWDOG_VERSION='v0.20.2'
RUN apk add --no-cache bash git wget
RUN pip install "dotenv-linter==$DOTENV_LINTER_VERSION" \
# Installing reviewdog to optionally comment on pull requests:
&& wget -O - -q 'https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh' \
| sh -s -- -b /usr/local/bin/ "$REVIEWDOG_VERSION"
COPY ./scripts/entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]