Skip to content
Open
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
5 changes: 4 additions & 1 deletion yelb-appserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ ENV RACK_ENV=production
RUN gem install sinatra --no-document
RUN gem install redis --no-document
### hack to allow the setup of the pg gem (which would fail otherwise)
RUN apt-get update
# RUN apt-get update
# RUN apt-get install libpq-dev -y
RUN apt-get clean && apt-get update
RUN apt-get install libpq-dev -y

### end of hack (this would require additional research and optimization)
RUN gem install pg --no-document
### this installs the AWS SDK for DynamoDB (so that appserver can talk to DDB Vs the default Postgres/Redis)
Expand Down