Skip to content

Commit

Permalink
Merge pull request #17 from Joel-hanson/installation-issue
Browse files Browse the repository at this point in the history
The -y moved to upfront
  • Loading branch information
Joel-hanson authored May 23, 2020
2 parents a548d1f + fbe0631 commit 7496d43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
aws_secret_access_key: ${{ secrets.aws_secret_access_key }}
django_path: sample_project
unit_testing: true
deploy: true
deploy: false
min_coverage: 10
postgresql_required: true
security_check: true
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:18.04

RUN apt-get -y update && apt-get -y upgrade && apt-get install -y gnupg2 wget
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install gnupg2 wget

RUN wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | apt-key add -
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list
Expand All @@ -14,7 +14,7 @@ RUN /etc/init.d/postgresql start &&\

USER root

RUN apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev git python-psycopg2 libpq-dev
RUN apt-get -y install make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev git python-psycopg2 libpq-dev

RUN curl -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash

Expand Down

0 comments on commit 7496d43

Please sign in to comment.