Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[deps] Bump nginx from 1.23.4-alpine to 1.27.0-alpine in /images/openwisp_nginx #318

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions images/openwisp_nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
FROM nginx:1.23.4-alpine
FROM nginx:1.27.0-alpine

RUN apk add --update --no-cache \
openssl~=3.0.15-r0 \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

certbot~=1.32.0-r0 \
certbot-nginx~=1.32.0-r0 && \
py3-pip~=23.3.1-r0 \
certbot~=2.7.4-r0 \
certbot-nginx~=2.7.4-r0 && \
rm -rf /var/cache/apk/* /tmp/*

WORKDIR /etc/nginx/
CMD ["sh", "init_command.sh"]
EXPOSE 80 443

# DL3018
COPY ./common/services.py \
./common/init_command.sh \
./common/utils.sh \
./openwisp_nginx/ \
/etc/nginx/

RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --break-system-packages --no-cache-dir -r requirements.txt

ENV MODULE_NAME=nginx \
PYTHONUNBUFFERED=1 \
Expand Down