forked from awsdocs/aws-doc-sdk-examples
-
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.
- Loading branch information
1 parent
d336a17
commit d1b827e
Showing
10 changed files
with
21 additions
and
48 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,13 +1,8 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4133 | ||
FROM gcc:4.9 | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# resolve dependencies | ||
# or builld | ||
|
||
# set work directory | ||
WORKDIR /src | ||
|
||
CMD ["bash"] |
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,11 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4126 | ||
FROM mcr.microsoft.com/dotnet/sdk:6.0 | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# TODO: update fork & resolve dependencies from /cross-service/AuroraItemTracker | ||
WORKDIR /src/dotnetv3/SES | ||
RUN dotnet build | ||
|
||
CMD ["bash"] |
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,14 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4129 | ||
FROM golang:1.19.2 | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# resolve dependencies | ||
# or build | ||
|
||
# set work directory | ||
WORKDIR /src/gov2/dynamodb | ||
RUN go build ./... | ||
|
||
CMD ["bash"] |
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,11 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4127 | ||
FROM node:18 | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# resolve dependencies | ||
WORKDIR /src/javascriptv3 | ||
RUN npm install | ||
|
||
CMD ["bash"] |
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,12 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4128 | ||
FROM maven:latest | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# set work directory | ||
WORKDIR /src/javav2/example_code/cloudwatch | ||
|
||
RUN mvn package -Dmaven.test.skip | ||
|
||
CMD ["bash"] |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4131 | ||
FROM composer/composer:latest | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
WORKDIR /src/php/example_code/glue | ||
RUN composer install | ||
|
||
CMD ["bash"] |
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,12 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4125 | ||
FROM python:3 | ||
|
||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# resolve dependencies | ||
WORKDIR /src/python/ | ||
RUN pip install -r requirements.txt | ||
|
||
CMD ["bash"] |
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,15 +1,10 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4124 | ||
FROM ruby:3.1.2-buster | ||
|
||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# resolve dependencies | ||
WORKDIR /src/ruby | ||
RUN pwd | ||
RUN ls | ||
RUN bundle config --delete frozen | ||
RUN bundle install | ||
|
||
CMD ["./entrypoint.sh"] | ||
CMD ["bash"] |
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,12 +1,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
# Status: Beta | ||
# GA updates: https://github.com/awsdocs/aws-doc-sdk-examples/issues/4132 | ||
FROM swift:5.4.3 | ||
# copy in files | ||
RUN mkdir /src | ||
COPY . /src/ | ||
|
||
# set work directory | ||
WORKDIR /src/swift/example_code/s3/basics | ||
|
||
RUN swift build | ||
|
||
CMD ["bash"] |