mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-22 00:13:40 +00:00
Andrei Jiroh Halili
4df05ae9c4
Gonna start over on the workspace due to technical diffculties. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
17 lines
No EOL
533 B
Docker
17 lines
No EOL
533 B
Docker
# syntax=docker/dockerfile:1
|
|
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
|
|
|
|
# https://docs.docker.com/build/install-buildx/
|
|
COPY --from=docker/buildx-bin:latest /buildx /usr/libexec/docker/cli-plugins/docker-buildx
|
|
|
|
# brew maintenance + install ShellCheck and Hadolint
|
|
RUN brew update && brew install hadolint shellcheck |