This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 217
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
Showing
4 changed files
with
17 additions
and
11 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,5 @@ | ||
FROM quay.io/deis/go-dev:v0.22.0 | ||
FROM quay.io/deis/go-dev:v1.5.0 | ||
|
||
MAINTAINER Miguel Martinez <[email protected]> | ||
|
||
RUN curl https://glide.sh/get | sh | ||
RUN go get github.com/codegangsta/gin | ||
|
||
COPY rootfs/ / | ||
|
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
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ FROM bitnami/node:8 | |
|
||
# Install yarn | ||
RUN install_packages apt-transport-https && \ | ||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && \ | ||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && \ | ||
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ | ||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ | ||
install_packages yarn | ||
|
||
RUN yarn global add @angular/[email protected] && ng set --global packageManager=yarn | ||
|
@@ -12,4 +12,6 @@ COPY rootfs / | |
|
||
EXPOSE 4200 49152 | ||
|
||
ENTRYPOINT ["/app-entrypoint.sh"] | ||
|
||
CMD ["ng", "serve", "--host", "0.0.0.0"] |
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