Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
saleh-mir committed Aug 7, 2024
1 parent e29952f commit f2bf277
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ ARG TEST_BUILD=0
FROM python:3.11-slim AS jesse_basic_env
ENV PYTHONUNBUFFERED 1

RUN apt-get update \
&& apt-get -y install git build-essential libssl-dev \
# Add missing GPG keys
RUN apt-get update && apt-get install -y gnupg2 \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0E98404D386FA1D9 6ED0E7B82643E131 54404762BBB6E853 BDE6D2B9216EC7A8 \
&& apt-get update

RUN apt-get -y install git build-essential libssl-dev \
&& apt-get clean \
&& pip install --upgrade pip

Expand Down

0 comments on commit f2bf277

Please sign in to comment.