This commit is contained in:
damage 2022-10-30 19:06:19 +01:00
commit 085db384d9
2 changed files with 11 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -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

3
build.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker build --pull --tag tuxmainy/php-cli:7.4-de .