Files
.github
combineImg
gifConvert
static
templates
twExtract
Dockerfile
__init__.py
.coveragerc
.gitignore
Dockerfile
LICENSE.txt
api.md
cache.py
config.json
configHandler.py
docker-compose.yml
docker.md
hosting.md
msgs.py
package-lock.json
package.json
pytest.ini
readme.md
requirements.txt
run_tests.sh
serverless.yml
test_vx_VNF.py
test_vx_embeds.py
test_vx_extract.py
test_vx_misc.py
testgen.py
twitfix.ini
twitfix.py
twitfix.service
twitfix_proxy.conf
utils.py
vxApi.py
vx_testdata.py
vxlogging.py
wsgi.py
BetterTwitFix/twExtract/Dockerfile
2023-08-15 10:20:58 +01:00

9 lines
269 B
Docker

FROM public.ecr.aws/lambda/python:3.8
RUN pip install requests==2.31.0
# Copy function code
COPY __init__.py ${LAMBDA_TASK_ROOT}/app.py
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile)
CMD [ "app.lambda_handler" ]