Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get rid of Docker warnings #31

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PY_VERSION=3.9

FROM amazon/aws-lambda-python:$PY_VERSION as install-stage
FROM amazon/aws-lambda-python:$PY_VERSION AS install-stage

# Declare it a second time so it's brought into this scope.
ARG PY_VERSION=3.9
Expand All @@ -25,7 +25,7 @@ COPY src/py$PY_VERSION/ .
# underlying pip calls.
RUN pipenv sync --system --extra-pip-args="--no-cache-dir --target ${LAMBDA_TASK_ROOT}"

FROM amazon/aws-lambda-python:$PY_VERSION as build-stage
FROM amazon/aws-lambda-python:$PY_VERSION AS build-stage

###
# For a list of pre-defined annotation keys and value types see:
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
version: '3.2'

services:
build_deployment_package:
build: .
Expand Down
Loading