-
Notifications
You must be signed in to change notification settings - Fork 132
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
Updated Ubuntu and nginx versions. #28
Conversation
bashilias
commented
Sep 23, 2022
- Moved to Ubuntu 22.04 and Nginx 1.22.
- Added Docker install script to README.
Any reason not to just base these Dockerfiles of https://hub.docker.com/_/nginx/ instead? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bumping nginx further
|
||
RUN apt-get update && apt-get -y upgrade && \ | ||
apt-get install -y wget libpcre3-dev build-essential libssl-dev zlib1g-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /opt | ||
|
||
RUN wget https://nginx.org/download/nginx-1.18.0.tar.gz && \ | ||
RUN wget https://nginx.org/download/nginx-1.22.0.tar.gz && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUN wget https://nginx.org/download/nginx-1.22.0.tar.gz && \ | |
RUN wget https://nginx.org/download/nginx-1.23.1.tar.gz && \ |
|
||
RUN apt-get update && apt-get -y upgrade && \ | ||
apt-get install -y wget libpcre3-dev build-essential libssl-dev zlib1g-dev && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /opt | ||
|
||
RUN wget https://nginx.org/download/nginx-1.18.0.tar.gz && \ | ||
RUN wget https://nginx.org/download/nginx-1.22.0.tar.gz && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUN wget https://nginx.org/download/nginx-1.22.0.tar.gz && \ | |
RUN wget https://nginx.org/download/nginx-1.23.1.tar.gz && \ |
To be honest I just think it's better to use the upstream images. Bumping manually is tiring, and it's not like Signal merge pull requests for this repo often. Even if this does get merged, it will quickly become outdated again. |
Not relevant anymore. |