Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions frameworks/workerman-websocket/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
FROM ubuntu:24.04
FROM ubuntu:26.04

ENV PROCESS_MULTIPLIER=1
ENV EVENT_LOOP=Select

ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php > /dev/null && \
apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null
RUN apt-get update -yqq > /dev/null && apt-get upgrade -yqq > /dev/null

RUN apt-get install -yqq php8.5-cli php8.5-xml > /dev/null
RUN apt-get install -yqq zip unzip php8.5-cli php8.5-xml php8.5-zip> /dev/null

COPY --from=composer/composer:latest-bin --link /composer /usr/local/bin/composer

Expand Down
2 changes: 1 addition & 1 deletion frameworks/workerman-websocket/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"workerman/workerman": "^5"
"workerman/workerman": "^5.2.2"
},
"autoload": {
"psr-4": {
Expand Down
Loading