-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73a0764
commit 76c2ffd
Showing
2 changed files
with
12 additions
and
7 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,8 +1,13 @@ | ||
# The Google App Engine Flexible Environment base Docker image can | ||
# also be used on Google Container Engine, or any other Docker host. | ||
# This image is based on Debian Jessie and includes nodejs and npm | ||
# installed from nodejs.org. The source is located in | ||
# https://github.com/GoogleCloudPlatform/nodejs-docker | ||
FROM gcr.io/google_appengine/nodejs | ||
|
||
ADD . /app | ||
WORKDIR /app | ||
|
||
RUN npm install | ||
ENV PORT=8081 | ||
ENV PORT=8080 | ||
ENTRYPOINT ["npm", "start"] |
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