mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-27 07:31:42 +01:00
Bumps ubuntu from 25.04 to 25.10. --- updated-dependencies: - dependency-name: ubuntu dependency-version: '25.10' dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
13 lines
382 B
Docker
13 lines
382 B
Docker
FROM ubuntu:25.10
|
|
|
|
RUN apt update && apt install -y libatomic1
|
|
|
|
ADD https://github.com/Kong/ngx_wasm_module/releases/download/prerelease-0.6.0/wasmx-prerelease-0.6.0-v8-x86_64-ubuntu22.04.tar.gz wasmx.tar.gz
|
|
|
|
RUN mkdir /etc/nginx
|
|
RUN tar -xvf wasmx.tar.gz
|
|
RUN mv /wasmx-prerelease-0.6.0-v8-x86_64-ubuntu22.04/* /etc/nginx/
|
|
|
|
WORKDIR /etc/nginx
|
|
|
|
CMD [ "./nginx", "-g", "daemon off;" ] |