Skip to content

Commit

Permalink
Fix for Dockerfile and Dockerfile PHP update
Browse files Browse the repository at this point in the history
  • Loading branch information
Eurobertics committed Feb 17, 2025
1 parent d11871a commit ecc2319
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Docker/Dockerfile
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"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Nebucord - Discord WebSocket and REST API


[![GitHub Release](https://img.shields.io/github/release/eurobertics/nebucord.svg?colorB=brightgreen&label=latest-stable)](https://github.com/eurobertics/nebucord)
[![GitHub Development](https://img.shields.io/badge/dev--master-v1.2.1-red.svg)](https://github.com/eurobertics/nebucord)
[![GitHub Development](https://img.shields.io/badge/dev--master-v1.2.2-red.svg)](https://github.com/eurobertics/nebucord)
[![GitHub license](https://img.shields.io/github/license/eurobertics/nebucord.svg)](https://github.com/Eurobertics/Nebucord/blob/master/LICENSE)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=Eurobertics_Nebucord&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=Eurobertics_Nebucord)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Eurobertics_Nebucord&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=Eurobertics_Nebucord)
Expand Down
2 changes: 1 addition & 1 deletion src/Base/StatusList.php
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ abstract class StatusList {

const CLIENTBROWSER = 'NebucordWS API';
const CLIENTHOST = 'nebucordws.nebulatien.org';
const VERSION = '1.2.1';
const VERSION = '1.2.2';

/**
* Returns the OS.
Expand Down

0 comments on commit ecc2319

Please sign in to comment.