Skip to content

Commit

Permalink
remove -onbuild suffix from node containers [deprecated] (#102)
Browse files Browse the repository at this point in the history
the node:X-onbuild images are deprecated (see docker-library/official-images#2076 for more details)
for the samples just rely on the base image
  • Loading branch information
softdevnf committed Nov 5, 2018
1 parent e283c35 commit fd774d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
5 changes: 3 additions & 2 deletions node/express/kubernetes/Application/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM node:8-onbuild
MAINTAINER Azure App Services Container Images <[email protected]>
FROM node:8
LABEL maintainer="Azure App Services Container Images <[email protected]>"

ENV PORT 8080
EXPOSE 8080

Expand Down
4 changes: 1 addition & 3 deletions node/plain/kubernetes/Application/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
FROM node:8-onbuild

# FROM node:6.9.3
FROM node:8
LABEL maintainer="Azure App Service Container Images <[email protected]>"

# Create app directory
Expand Down
4 changes: 1 addition & 3 deletions node/sail.js/kubernetes/Application/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
FROM node:8-onbuild

# FROM node:6.9.3
FROM node:8
LABEL maintainer="Azure App Service Container Images <[email protected]>"

# Create app directory
Expand Down

0 comments on commit fd774d4

Please sign in to comment.