-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
47a7b0c
commit b26925d
Showing
6 changed files
with
112 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,4 +68,4 @@ public string basePath() | |
} | ||
public DirectoryInfo attachments { get; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#################################################### | ||
# Azure Devops PDF Exporter Image | ||
# DEV GUIDELINES ################################### | ||
# https://docs.docker.com/develop/develop-images/dockerfile_best-practices | ||
##################################################### | ||
|
||
FROM ubuntu:18.04 | ||
|
||
# Versions of custom installed tools | ||
# Versions of items installed via NPM or APT are in the command lines below. | ||
ENV TZ=Europe/Dublin \ | ||
ANSIBLE_VERSION=2.10.4 \ | ||
KUBECTL_VERSION=1.19.2 \ | ||
HELM_VERSION=3.3.4 \ | ||
AWS_CLI_VERSION=2.1.15 \ | ||
YQ_VERSION=3.3.2 \ | ||
FLYWAY_VERSION=7.0.0 \ | ||
PIP_VERSION=20.3.3 \ | ||
POWERSHELL_VERSION=7.1* | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get -qq -o=Dpkg::Use-Pty=0 update --fix-missing && apt-get -qq -o=Dpkg::Use-Pty=0 install -f -y gconf-service \ | ||
libasound2 \ | ||
libatk1.0-0 \ | ||
libc6 \ | ||
libcairo2\ | ||
libcups2 \ | ||
libdbus-1-3 \ | ||
libexpat1 \ | ||
libfontconfig1 \ | ||
libgcc1 \ | ||
libgconf-2-4 \ | ||
libgdk-pixbuf2.0-0 \ | ||
libglib2.0-0 \ | ||
libgtk-3-0 \ | ||
libnspr4 \ | ||
libpango-1.0-0 \ | ||
libpangocairo-1.0-0 \ | ||
libstdc++6 \ | ||
libx11-6 \ | ||
libx11-xcb1 \ | ||
libxcb1 \ | ||
libxcomposite1 \ | ||
libxcursor1 \ | ||
libxdamage1 \ | ||
libxext6 \ | ||
libxfixes3 \ | ||
libxi6 \ | ||
libxrandr2 \ | ||
libxrender1 \ | ||
libxss1 \ | ||
libxtst6 \ | ||
ca-certificates \ | ||
fonts-liberation \ | ||
libappindicator1 \ | ||
libnss3 \ | ||
lsb-release \ | ||
xdg-utils \ | ||
wget \ | ||
libgbm-dev \ | ||
ttf-ancient-fonts\ | ||
# Tidy up | ||
&& apt-get -qq autoremove -y \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive \ | ||
# Install Microsoft package feed | ||
&& wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \ | ||
&& dpkg -i packages-microsoft-prod.deb \ | ||
&& rm packages-microsoft-prod.deb \ | ||
\ | ||
# Install .NET | ||
&& apt-get update \ | ||
&& apt-get install -y apt-transport-https \ | ||
&& apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
dotnet-runtime-6.0 \ | ||
\ | ||
# Cleanup | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
COPY ./output/linux-x64/azuredevops-export-wiki /usr/local/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters