Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ container-uploader/*.zip
s3-uploader/node_modules
s3-uploader/runtimes/rust_on_provided_al2/target
s3-uploader/runtimes/rust_on_provided_al2023/target
s3-uploader/runtimes/dotnetcore31/src/obj
s3-uploader/runtimes/dotnet6/src/obj
s3-uploader/runtimes/dotnet*/src/obj
s3-uploader/runtimes/java21/.gradle
s3-uploader/runtimes/java21/build
s3-uploader/runtimes/java21/bin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ COPY src .
RUN yum update -y && yum install -y clang zlib-devel krb5-devel openssl-devel zip gzip tar wget
RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh && chmod +x ./dotnet-install.sh && ./dotnet-install.sh --version latest
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1
ENV SSL_CERT_FILE=/tmp/noop
RUN /root/.dotnet/dotnet publish --configuration Release --arch $ARCH --output /tmp/publish
RUN zip -j /tmp/code.zip /tmp/publish/bootstrap

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"configuration": "Release",
"environment-variables" : "SSL_CERT_FILE=/tmp/noop",
"framework": "net8.0",
"function-runtime": "provided.al2023",
"function-memory-size": 256,
Expand Down