forked from EclipseFdn/dockerfiles
-
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.
Need for new dockerfile - fullstack embedded app agent EclipseFdn#5
- Loading branch information
1 parent
600cd53
commit a2ea7c1
Showing
2 changed files
with
30 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
#******************************************************************************* | ||
# Copyright (c) 2021 Eclipse Foundation and others. | ||
# This program and the accompanying materials are made available | ||
# under the terms of the Eclipse Public License 2.0 | ||
# which is available at http://www.eclipse.org/legal/epl-v20.html | ||
# SPDX-License-Identifier: EPL-2.0 | ||
#******************************************************************************* | ||
|
||
## | ||
# Installs required build tools that will be used in the compilation process | ||
# of fullstack development environments. This includes set and tested minimum | ||
# versions of node.js, Hugo, and Java. | ||
## | ||
FROM alpine:3.13 | ||
|
||
## Pull in previous release packages for older LTS Nodejs | ||
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.12/main' >> /etc/apk/repositories | ||
RUN apk add --no-cache \ | ||
make \ | ||
"nodejs<13.0.0" \ | ||
"hugo>0.76.5" \ | ||
openjdk11-jdk \ | ||
maven \ | ||
yarn | ||
|
||
USER 10001:0 | ||
|