Files
c-toxcore/other/docker/pkgsrc/pkgsrc.Dockerfile
T
github-actions[bot] bab03670b2 chore: Release v0.2.23-rc.1
This release mostly focuses on fixes, but also brings some new apis.
2026-05-14 09:22:40 +00:00

15 lines
486 B
Docker

FROM toxchat/pkgsrc:latest
WORKDIR /work
COPY . /work/c-toxcore-0.2.23
RUN ["tar", "zcf", "c-toxcore.tar.gz", "c-toxcore-0.2.23"]
WORKDIR /work/pkgsrc
COPY other/docker/pkgsrc/pkgsrc.patch /tmp/pkgsrc.patch
RUN ["patch", "-p1", "-i", "/tmp/pkgsrc.patch"]
WORKDIR /work/pkgsrc/chat/toxcore
RUN ["bmake", "clean"]
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes"]
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes", "install"]