-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for Dockerfile and Dockerfile PHP update
- Loading branch information
1 parent
d11871a
commit ecc2319
Showing
3 changed files
with
5 additions
and
5 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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM php:8.1-cli | ||
FROM php:8.3-cli | ||
LABEL maintainer.name="Bernd Robertz" | ||
LABEL maintainer.email="[email protected]" | ||
LABEL version="1.2.1" | ||
LABEL version="1.2.2" | ||
LABEL description="Nebucord, a Discord bot with REST and WebSocket." | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN groupadd -f nebucord && RUN useradd -M -g nebucord nebucord | ||
RUN groupadd -f nebucord && useradd -M -g nebucord nebucord | ||
|
||
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" | ||
|
||
|
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