(docker) ws docker file installs strace

This commit is contained in:
Benjamin Sergeant 2020-09-04 13:47:12 -07:00
parent b74f7319c6
commit 9f51a54a83
4 changed files with 8 additions and 9 deletions

View File

@ -20,7 +20,7 @@ RUN make ws_mbedtls_install && \
FROM alpine:3.12 as runtime
RUN apk add --no-cache libstdc++ mbedtls ca-certificates python3 && \
RUN apk add --no-cache libstdc++ mbedtls ca-certificates python3 strace && \
addgroup -S app && \
adduser -S -G app app

View File

@ -2,6 +2,10 @@
All changes to this project will be documented in this file.
## [10.3.4] - 2020-09-04
(docker) ws docker file installs strace
## [10.3.3] - 2020-09-02
(ws) echo_client command renamed to autoroute. Command exit once the server close the connection. push_server commands exit once N messages have been sent.

View File

@ -6,4 +6,4 @@
#pragma once
#define IX_WEBSOCKET_VERSION "10.3.3"
#define IX_WEBSOCKET_VERSION "10.3.4"

View File

@ -3308,13 +3308,8 @@ int main(int argc, char** argv)
}
else if (app.got_subcommand("push_server"))
{
ret = ix::ws_push_server(port,
hostname,
tlsOptions,
ipv6,
disablePerMessageDeflate,
disablePong,
sendMsg);
ret = ix::ws_push_server(
port, hostname, tlsOptions, ipv6, disablePerMessageDeflate, disablePong, sendMsg);
}
else if (app.got_subcommand("transfer"))
{