commit 085db384d979d468bb863a29cb21fc573e342f87 Author: damage Date: Sun Oct 30 19:06:19 2022 +0100 init ci diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d21cbe1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM php:7.4-cli + +RUN apt update \ + && apt install -y locales \ + && rm -rf /var/lib/apt/lists/* + +RUN sed -i 's/^# *\(de_DE.UTF-8\)/\1/' /etc/locale.gen \ + && locale-gen diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..6626cd3 --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker build --pull --tag tuxmainy/php-cli:7.4-de .