This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from ueberdosis/feature/update-pandoc
Feature/update pandoc
- Loading branch information
Showing
9 changed files
with
33 additions
and
34 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 |
---|---|---|
|
@@ -33,8 +33,8 @@ jobs: | |
sudo apt-get install -y wget | ||
sudo mkdir -p /usr/src/pandoc | ||
cd /usr/src/pandoc | ||
sudo wget https://github.com/jgm/pandoc/releases/download/2.9.2/pandoc-2.9.2-1-amd64.deb | ||
sudo dpkg -i pandoc-2.9.2-1-amd64.deb | ||
sudo wget https://github.com/jgm/pandoc/releases/download/2.15/pandoc-2.15-1-amd64.deb | ||
sudo dpkg -i pandoc-2.15-1-amd64.deb | ||
- name: Install Dependencies (PHP vendors) | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist | ||
|
@@ -59,6 +59,7 @@ jobs: | |
mirror_to_gitlab: | ||
runs-on: ubuntu-latest | ||
needs: tests | ||
if: ${{ github.ref_name == 'main' }} | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM mariadb:10.4 | ||
FROM --platform=amd64 mariadb:10.4 | ||
LABEL maintainer "Patrick Baber <[email protected]>" | ||
|
||
COPY docker/mysql/usr/local/bin/docker-healthcheck.sh /usr/local/bin/docker-healthcheck.sh | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:13 AS node | ||
FROM --platform=amd64 node:13 AS node | ||
LABEL maintainer "Patrick Baber <[email protected]>" | ||
|
||
WORKDIR /var/www | ||
|
@@ -14,7 +14,7 @@ RUN yarn install && \ | |
yarn build && \ | ||
rm -Rf node_modules | ||
|
||
FROM nginx:1.17-alpine | ||
FROM --platform=amd64 nginx:1.17-alpine | ||
LABEL maintainer "Patrick Baber <[email protected]>" | ||
|
||
COPY docker/nginx/etc/default.conf /etc/nginx/conf.d/default.conf | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:13 AS node | ||
FROM --platform=amd64 node:13 AS node | ||
LABEL maintainer "Patrick Baber <[email protected]>" | ||
|
||
WORKDIR /var/www | ||
|
@@ -15,7 +15,7 @@ RUN yarn install && \ | |
rm -Rf node_modules | ||
|
||
|
||
FROM php:7.4-fpm-buster | ||
FROM --platform=amd64 php:7.4-fpm-buster | ||
LABEL maintainer "Patrick Baber <[email protected]>" | ||
|
||
# Install PHP dependencies | ||
|
@@ -40,8 +40,8 @@ RUN apt-get update && \ | |
apt-get install -y wget && \ | ||
mkdir -p /usr/src/pandoc && \ | ||
cd /usr/src/pandoc && \ | ||
wget https://github.com/jgm/pandoc/releases/download/2.9.2/pandoc-2.9.2-1-amd64.deb && \ | ||
dpkg -i pandoc-2.9.2-1-amd64.deb && \ | ||
wget https://github.com/jgm/pandoc/releases/download/2.15/pandoc-2.15-1-amd64.deb && \ | ||
dpkg -i pandoc-2.15-1-amd64.deb && \ | ||
apt-get purge -y wget && \ | ||
rm -rf /usr/src/pandoc && \ | ||
rm -r /var/lib/apt/lists/* | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.