15 lines
231 B
Docker
15 lines
231 B
Docker
FROM jdkato/vale:latest as vale
|
|
|
|
FROM andreysenov/firebase-tools:latest
|
|
|
|
USER root
|
|
|
|
RUN echo installing dependencies...
|
|
RUN apt -y install git woff2 bash
|
|
|
|
RUN echo copying vale...
|
|
COPY --from=vale /bin/vale /bin/vale
|
|
|
|
RUN echo OK
|
|
|