Coder Social home page Coder Social logo

Comments (2)

lucashuy avatar lucashuy commented on June 25, 2024

Thanks for raising this feature request. Was there a particular way you were building the layer? Defining a layer as such:

HelloWorldLayer:
  Type: AWS::Serverless::LayerVersion
  Properties:
    ContentUri: ./layer
    CompatibleRuntimes:
      - provided.al2
    CompatibleArchitectures:
      - x86_64
  Metadata:
    BuildMethod: makefile

With a random requirements.txt and a Makefile in the ./layer folder:

# ./layer/Makefile
build-HelloWorldLayer:
	# my system does not have yum, AL2 provided does
	yum --version

	mkdir -p "$(ARTIFACTS_DIR)/python"
	python3 -m pip install -r requirements.txt -t "$(ARTIFACTS_DIR)/python"

Running sam build -u HelloWorldLayer seems to pull the provided AL2 build image and installed requirements successfully.

from aws-sam-cli.

rikbruil avatar rikbruil commented on June 25, 2024

@lucashuy Thanks for the info, I compared your snippet to our templates and everything was identical except for the CompatibleRuntime setting which was set to python3.8 in our case.

I ran the SAM build command just for the layer resource as you did, and now it turns out the correct image gets used when building (whether I specify provided.al2 or python3.8, in both cases I get an AL2 based image). I took another look at our template and noticed there was also one lambda function in there with Runtime: provided.

It seems that SAM CLI prefers the provided runtime over our explicitly specified python3.8 compatible runtime for the layer when we build the entire stack via sam build. I'm not sure if that's correct behaviour, because the provided runtime appears to be the only one using a different AmazonLinux version compared to the rest of the runtimes. To me it seems to be the 'least' compatible, while SAM CLI output says:

For container layer build, first compatible runtime is chosen as build target for container.

Do you recommend I open a bug around this behaviour, or does first compatible runtime mean any existing runtime image in this context?

from aws-sam-cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.