Extheoisah / hxckr-infra

https://hub.docker.com/r/extheoisah/hxckr-git-service/tags
1 stars 1 forks source link

fix: Now using ubuntu for better ssl support #11

Closed daviroo closed 1 week ago

daviroo commented 1 week ago

Switch Base Image to Ubuntu 22.04 to Resolve SSL Library Issues

Change Summary

This PR updates the final stage of our Dockerfile from debian:bullseye-slim to ubuntu:22.04 to address runtime errors related to missing SSL libraries.

Rationale

Changes Made

# Final stage
FROM ubuntu:22.04

# Install OpenSSL and ca-certificates
RUN apt-get update && \
    apt-get install -y openssl ca-certificates && \
    rm -rf /var/lib/apt/lists/*

# ... rest of the Dockerfile remains unchanged ...

Impact

Testing