amazon web services - Build container found dead before completing the build. Build container died because it was out of memory, or the Docker image was missing glibc -


i trying basic python selenium tests in aws. idea have codebuild run them , deploy...pretty basic, right?

however, having lot of trouble xvfb using aws provided image such aws/codebuild/python:2.7.12

so decided use docker image nice people @ selenium made: https://github.com/seleniumhq/docker-selenium/tree/master/standalonefirefox

i ran issue in title , not because of little ram (i tried 3gb , 7gb).

i have tried extending selenium docker file ensure glibc install:

from selenium/standalone-firefox:latest  run sudo apt-get -y update && sudo apt-get install -y build-essential 

any ideas problem is?


Comments

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -