skip to Main Content

No static files after deploying Django app – Amazon Web Sevices

I've deployed a multi container Django application to AWS EB with ECS running on 64bit Amazon Linux 2/3.2.3 platform. Here's the Dockerrun.aws.json file. { "AWSEBDockerrunVersion": "2", "containerDefinitions": [ { "essential": true, "image": "${AWS_ACOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/${IMAGE_NAME}:${IMAGE_TAG}", "mountPoints": [ { "containerPath": "/code/static", "sourceVolume": "web"…

VIEW QUESTION
Back To Top
Search