(docker) ws docker file installs strace
This commit is contained in:
parent
b74f7319c6
commit
9f51a54a83
@ -20,7 +20,7 @@ RUN make ws_mbedtls_install && \
|
|||||||
|
|
||||||
FROM alpine:3.12 as runtime
|
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 && \
|
addgroup -S app && \
|
||||||
adduser -S -G app app
|
adduser -S -G app app
|
||||||
|
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
All changes to this project will be documented in this file.
|
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
|
## [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.
|
(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.
|
||||||
|
@ -6,4 +6,4 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define IX_WEBSOCKET_VERSION "10.3.3"
|
#define IX_WEBSOCKET_VERSION "10.3.4"
|
||||||
|
@ -3308,13 +3308,8 @@ int main(int argc, char** argv)
|
|||||||
}
|
}
|
||||||
else if (app.got_subcommand("push_server"))
|
else if (app.got_subcommand("push_server"))
|
||||||
{
|
{
|
||||||
ret = ix::ws_push_server(port,
|
ret = ix::ws_push_server(
|
||||||
hostname,
|
port, hostname, tlsOptions, ipv6, disablePerMessageDeflate, disablePong, sendMsg);
|
||||||
tlsOptions,
|
|
||||||
ipv6,
|
|
||||||
disablePerMessageDeflate,
|
|
||||||
disablePong,
|
|
||||||
sendMsg);
|
|
||||||
}
|
}
|
||||||
else if (app.got_subcommand("transfer"))
|
else if (app.got_subcommand("transfer"))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user