14 lines
402 B
Docker
14 lines
402 B
Docker
# docker build -t registry-app.inhome.blapointe.com:5001/portfolio/resume:latest -f ./Dockerfile.cicd . && docker push registry-app.inhome.blapointe.com:5001/portfolio/resume:latest
|
|
FROM jdkato/vale:latest as vale
|
|
|
|
FROM andreysenov/firebase-tools:latest
|
|
|
|
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
|
|
|