Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: netcorelink/libchttpx
images: noneandundefined/libchttpx
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=branch
Expand Down
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ FROM debian:bookworm-slim AS builder

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gcc \
make \
build-essential \
libcjson-dev \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -32,8 +31,7 @@ FROM debian:bookworm-slim

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
gcc \
make \
build-essential \
libcjson-dev \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -46,7 +44,7 @@ RUN ldconfig \
&& test -d /usr/local/include/libchttpx

LABEL org.opencontainers.image.source="https://github.com/netcorelink/libchttpx" \
org.opencontainers.image.description="libchttpx C HTTP/WebSocket library (dev base image)" \
org.opencontainers.image.description="A powerful, cross-platform HTTP server library in C/C++ for building full-featured web servers." \
org.opencontainers.image.licenses="MIT"

WORKDIR /app
Loading