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

Version bump: nginx + nodejs #96

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions alpine-nginx-nodejs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM smebberson/alpine-nginx:3.0.0
FROM smebberson/alpine-nginx:3.9
MAINTAINER Scott Mebberson <[email protected]>

ENV NODE_VERSION=v6.4.0 NPM_VERSION=3
ENV NODE_VERSION=v12.13.1 NPM_VERSION=6.13.1

RUN echo "http://dl-4.alpinelinux.org/alpine/v3.2/main" >> /etc/apk/repositories && \
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.9/main" >> /etc/apk/repositories && \
apk add --update git curl make gcc g++ python linux-headers libgcc libstdc++ binutils-gold && \
curl -sSL https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}.tar.gz | tar -xz && \
cd /node-${NODE_VERSION} && \
Expand Down
6 changes: 3 additions & 3 deletions alpine-nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM smebberson/alpine-base:3.0.0
FROM smebberson/alpine-base:3.9
MAINTAINER Scott Mebberson <[email protected]>

# Install nginx
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.3/main" >> /etc/apk/repositories && \
apk add --update nginx=1.8.1-r1 && \
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.9/main" >> /etc/apk/repositories && \
apk add --update nginx=1.14.2-r4 && \
rm -rf /var/cache/apk/* && \
chown -R nginx:www-data /var/lib/nginx

Expand Down