-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove
-onbuild
suffix from node containers [deprecated] (#102)
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
Showing
3 changed files
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|