Skip to content

Commit 867562a

Browse files
fix /tmp dir perms for containers
1 parent c5882b0 commit 867562a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

nginx.dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ ARG NGINX_VERSION
33

44
FROM ${BASE_IMAGE} AS ngx_http_auth_jwt_builder_base
55
LABEL stage=ngx_http_auth_jwt_builder
6+
RUN chmod 1777 /tmp
67
RUN <<`
78
apt-get update
89
apt-get install -y curl build-essential

openssl.dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ FROM ${BASE_IMAGE}
44
ARG SSL_VERSION=3.2.1
55
ENV SRC_DIR=/tmp/openssl-src
66
ENV OUT_DIR=/usr/local/.openssl
7+
RUN chmod 1777 /tmp
78
RUN <<`
89
set -e
910
apt-get update

0 commit comments

Comments
 (0)