update
Some checks failed
Publish Docker Image / docker (push) Failing after 47s

This commit is contained in:
Lee
2023-10-08 16:33:34 +01:00
parent 33a5f64d8a
commit bdcc61ca76
5 changed files with 23 additions and 69 deletions

View File

@ -1,10 +0,0 @@
FROM ubuntu:22.04
# Configure DPKG, Run APT Update & Install Packages
RUN set -e \
&& dpkg --configure -a \
&& apt update -y \
&& apt install curl apt-utils -y
# Install Docker
RUN curl -sSL https://get.docker.com/ | CHANNEL=stable bash

View File

@ -1,10 +0,0 @@
FROM git.rainnny.club/rainnny/gitea-runner:docker
# Update & Install packages
RUN apt-get update -y \
&& apt-get install lsof curl ca-certificates openssl git tar sqlite3 fontconfig libfreetype6 iproute2 libstdc++6 wget openjdk-17-jre maven -y
# Install NodeJS
RUN curl -sL https://deb.nodesource.com/setup_16.x -o /tmp/nodesource_setup.sh
RUN bash /tmp/nodesource_setup.sh
RUN apt install nodejs -y

View File

@ -1,10 +0,0 @@
FROM docker:stable
# Install packages
RUN apk add --no-cache curl wget git
# Install Node 18
RUN apk add nodejs npm --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted
# Install Maven
RUN apk add maven

View File

@ -1,4 +0,0 @@
FROM tangramor/nginx-php8-fpm
# Install GD library
RUN docker-php-ext-install gd