forked from Green-Sky/tomato
e58eb27a8 fix(toxav): remove extra copy of video frame on encode Tested and works, but there might be alignment issues and other stuff. 206ea3530 refactor: Explicitly pass dependencies to constructors. 7cefa93cf fix(toxencryptsave): Wipe salt and passkey after usage. 7c3be2342 refactor: Add file/line to tox-bootstrapd logging. f84e8cdce refactor: Move loglogdata out of network.c. 390f7db06 refactor: Move random and memory OS-specifics to `os_*` files. REVERT: 640e6cace fix(toxav): remove extra copy of video frame on encode Tested and works, but there might be alignment issues and other stuff. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: e58eb27a84f9fa0cd996868e079f39e90a5c04b6
32 lines
1014 B
Docker
32 lines
1014 B
Docker
# Stage 1 - Compile websockify.
|
|
FROM toxchat/bootstrap-node:latest AS tox
|
|
FROM golang:1.23-alpine3.21 AS websockify
|
|
|
|
COPY websockify /work/websockify
|
|
RUN cd /work/websockify && go mod download github.com/gorilla/websocket && go install
|
|
|
|
# Stage 2 - Create the run-time image with bootstrap daemon and websockify.
|
|
FROM alpine:latest
|
|
|
|
RUN addgroup -S tox && adduser -SDH -G tox tox
|
|
|
|
COPY --from=websockify /go/bin/websockify /usr/local/bin/
|
|
COPY --from=tox /usr/local /usr/local/
|
|
COPY --from=tox /etc/tox-bootstrapd.conf /etc/
|
|
COPY entrypoint.sh /
|
|
|
|
RUN mkdir -p /var/lib/tox-bootstrapd/ /var/run/tox-bootstrapd/ \
|
|
&& chown tox:tox /var/lib/tox-bootstrapd/ /var/run/tox-bootstrapd/
|
|
# Public Key: 122837CCDD474DD1183A83152164D51427044B3EAAA52ED683F6BA602568673B
|
|
COPY keys /var/lib/tox-bootstrapd/
|
|
USER tox
|
|
|
|
# Use this to generate a keys file:
|
|
#RUN /usr/local/bin/tox-bootstrapd --config /etc/tox-bootstrapd.conf --log-backend stdout \
|
|
# && sleep 1
|
|
|
|
COPY tox-bootstrapd.conf /etc/
|
|
|
|
WORKDIR /web
|
|
CMD ["/entrypoint.sh"]
|