Update dockerfile
Some checks failed
Lint / lint (push) Successful in 29s
release-tag / release-image (push) Failing after 54s

- Bump ubuntu version
- Switch to apt from apt-get
- Add extra install for apt-transport-https
This commit is contained in:
Logan Cusano
2025-02-23 12:20:06 -05:00
parent 55ee80ce22
commit 3dbbdaeec2

View File

@@ -1,12 +1,13 @@
## OP25 Core Container
FROM ubuntu:22.04
FROM ubuntu:24.04
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies
RUN apt-get update && \
apt-get install -y git \
RUN apt update && \
apt install -y apt-transport-https && \
apt install -y git \
curl \
python3 \
python3-pip \