File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:bionic-20200219 as tmp
2
2
ARG PLUGIN_NAME=postgresql
3
3
ARG PLAN_TYPE=FREE
4
- ARG CORE_VERSION=10.1.3
5
- ARG PLUGIN_VERSION=8.1.2
4
+ ARG CORE_VERSION=10.1.4
5
+ ARG PLUGIN_VERSION=8.1.3
6
6
RUN apt-get update && apt-get install -y curl zip
7
7
RUN OS= && dpkgArch="$(dpkg --print-architecture)" && \
8
8
case "${dpkgArch##*-}" in \
@@ -34,6 +34,9 @@ RUN set -x \
34
34
COPY --from=tmp --chown=supertokens /usr/lib/supertokens /usr/lib/supertokens
35
35
COPY --from=tmp --chown=supertokens /usr/bin/supertokens /usr/bin/supertokens
36
36
COPY docker-entrypoint.sh /usr/local/bin/
37
+ RUN sysctl -w net.ipv4.tcp_keepalive_time=60 && \
38
+ sysctl -w net.ipv4.tcp_keepalive_intvl=5 && \
39
+ sysctl -w net.ipv4.tcp_keepalive_probes=3
37
40
RUN echo "$(md5sum /usr/lib/supertokens/config.yaml | awk '{ print $1 }')" >> /CONFIG_HASH
38
41
RUN ln -s usr/local/bin/docker-entrypoint.sh /entrypoint.sh # backwards compat
39
42
EXPOSE 3567
You can’t perform that action at this time.
0 commit comments