Skip to content

Commit

Permalink
Merge pull request acikyazilimagi#34 from oznakn/main
Browse files Browse the repository at this point in the history
add `build-essential` to Dockerfile deps
  • Loading branch information
ferhatbostanci authored Feb 7, 2023
2 parents ebb952f + 6bbae3c commit bec8e6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .docker/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV POETRY_VIRTUALENVS_CREATE=false
WORKDIR /app

RUN apt-get update && apt-get upgrade -y
RUN apt-get install git tini -y
RUN apt-get install git tini build-essential -y

RUN pip install --upgrade pip
RUN pip install poetry
Expand Down
2 changes: 1 addition & 1 deletion .docker/scraper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV POETRY_VIRTUALENVS_CREATE=false

WORKDIR /app

RUN apt-get update && apt-get upgrade -y && apt-get install git tini -y
RUN apt-get update && apt-get upgrade -y && apt-get install git tini build-essential -y
RUN pip install --upgrade pip
RUN pip install poetry

Expand Down
2 changes: 1 addition & 1 deletion docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV POETRY_VIRTUALENVS_CREATE=false
WORKDIR /app

RUN apt-get update && apt-get upgrade -y
RUN apt-get install git -y
RUN apt-get install git build-essential -y

RUN pip install --upgrade pip
RUN pip install poetry
Expand Down

0 comments on commit bec8e6c

Please sign in to comment.