2023-05-05 09:24:28 +00:00
|
|
|
# syntax=docker/dockerfile:1
|
2023-03-24 17:36:48 +00:00
|
|
|
FROM gitpod/workspace-full
|
|
|
|
|
|
|
|
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#linux
|
|
|
|
RUN sudo install-packages \
|
|
|
|
libcairo2-dev \
|
|
|
|
libfreetype6-dev \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-dev \
|
|
|
|
libpng-dev \
|
|
|
|
libz-dev
|
|
|
|
|
2023-05-05 09:24:28 +00:00
|
|
|
# https://docs.docker.com/build/install-buildx/
|
|
|
|
COPY --from=docker/buildx-bin:latest /buildx /usr/libexec/docker/cli-plugins/docker-buildx
|
|
|
|
|
2023-03-24 17:36:48 +00:00
|
|
|
# brew maintenance + install ShellCheck and Hadolint
|
|
|
|
RUN brew update && brew install hadolint shellcheck
|