Skip to content

v1.10.0

Compare
Choose a tag to compare
@72636c 72636c released this 07 Jul 05:53
· 27 commits to master since this release
058047e
  • Support build secrets (#36, #37, @koterpillar, @72636c)

    steps:
      - command: echo wow
        plugins:
          - seek-oss/docker-ecr-cache#v1.10.0:
              secrets:
                - SECRET_ENV
                - id=npm,src=.npmrc

    See the README section for more details.

  • Support inline Dockerfiles (#35, @koterpillar)

    steps:
      - command: echo wow
        plugins:
          - seek-oss/docker-ecr-cache#v1.10.0:
              dockerfile-inline: |
                FROM node:16-alpine
                WORKDIR /workdir
                COPY package.json package-lock.json /workdir
                RUN npm install