Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pins python image to 3.9.16 (openssl 1.1.1n) #404

Merged
merged 2 commits into from
Aug 24, 2023
Merged
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
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9
ARG PYTHON_VERSION=3.9.16
FROM python:${PYTHON_VERSION}
MAINTAINER Valerie Hendrix <[email protected]>

Expand All @@ -19,7 +19,7 @@ WORKDIR /app
# Run OS updates
# create unprivileged user, create application directories, and ensure proper permissions
# Install application dependencies
RUN apt-get update && apt-get install -y --no-install-recommends libldap2-dev libsasl2-dev libssl-dev netcat-traditional\
RUN apt-get update && apt-get install -y --no-install-recommends netcat python-dev libldap2-dev libsasl2-dev libssl-dev \
&& rm -rf /var/lib/apt/lists/* \
&& groupadd -g ${GID} webapp \
&& useradd -u ${UID} -g ${GID} -c 'Web app User' webapp \
Expand Down
Loading