Sign in
apache
/
hamilton
/
refs/heads/generic-with-columns
/
.
/
examples
/
aws
/
lambda
/
Dockerfile
blob: 480f64e381367afbf888090383b7c180274d3aed [
file
] [
log
] [
blame
]
FROM
public
.
ecr
.
aws
/
lambda
/
python
:
3.11
COPY requirements
.
txt
./
RUN pip install
-
r requirements
.
txt
ENV HAMILTON_TELEMETRY_ENABLED
=
false
COPY app
./
app
CMD
[
"app.lambda_handler.lambda_handler"
]