forked from CircleCI-Archived/circleci-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.
Dockerfiles from https://circleci.com/gh/circleci/circleci-images/29045
- Loading branch information
1 parent
ce1adbc
commit 97bde4d
Showing
183 changed files
with
9,742 additions
and
142 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
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
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
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
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
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
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
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
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
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,26 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM openjdk:14-ea-24-jdk-buster | ||
|
||
# It's DynamoDB, in Docker! | ||
# | ||
# Check for details on how to run DynamoDB locally.: | ||
# | ||
# http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html | ||
# | ||
# This Dockerfile essentially replicates those instructions. | ||
|
||
# Create our main application folder. | ||
RUN mkdir -p opt/dynamodb | ||
WORKDIR /opt/dynamodb | ||
|
||
# Download and unpack dynamodb. | ||
RUN wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz -q -O - | tar -xz || curl -L http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz | tar xz | ||
|
||
# The entrypoint is the dynamodb jar. | ||
ENTRYPOINT ["java", "-Xmx1G", "-jar", "DynamoDBLocal.jar"] | ||
|
||
# Default port for "DynamoDB Local" is 8000. | ||
EXPOSE 8000 |
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,26 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM openjdk:14-ea-24-jdk-oraclelinux7 | ||
|
||
# It's DynamoDB, in Docker! | ||
# | ||
# Check for details on how to run DynamoDB locally.: | ||
# | ||
# http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html | ||
# | ||
# This Dockerfile essentially replicates those instructions. | ||
|
||
# Create our main application folder. | ||
RUN mkdir -p opt/dynamodb | ||
WORKDIR /opt/dynamodb | ||
|
||
# Download and unpack dynamodb. | ||
RUN wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz -q -O - | tar -xz || curl -L http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz | tar xz | ||
|
||
# The entrypoint is the dynamodb jar. | ||
ENTRYPOINT ["java", "-Xmx1G", "-jar", "DynamoDBLocal.jar"] | ||
|
||
# Default port for "DynamoDB Local" is 8000. | ||
EXPOSE 8000 |
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,26 @@ | ||
### | ||
### DO NOT MODIFY THIS FILE. THIS FILE HAS BEEN AUTOGENERATED | ||
### | ||
|
||
FROM openjdk:14-ea-24-jdk | ||
|
||
# It's DynamoDB, in Docker! | ||
# | ||
# Check for details on how to run DynamoDB locally.: | ||
# | ||
# http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html | ||
# | ||
# This Dockerfile essentially replicates those instructions. | ||
|
||
# Create our main application folder. | ||
RUN mkdir -p opt/dynamodb | ||
WORKDIR /opt/dynamodb | ||
|
||
# Download and unpack dynamodb. | ||
RUN wget http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz -q -O - | tar -xz || curl -L http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest.tar.gz | tar xz | ||
|
||
# The entrypoint is the dynamodb jar. | ||
ENTRYPOINT ["java", "-Xmx1G", "-jar", "DynamoDBLocal.jar"] | ||
|
||
# Default port for "DynamoDB Local" is 8000. | ||
EXPOSE 8000 |
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
Oops, something went wrong.