Skip to content
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
8 changes: 4 additions & 4 deletions deployment/docker-build/pyaleph.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:24.04 as base
FROM ubuntu:24.04 AS base

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && apt-get -y upgrade && apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:deadsnakes/ppa
Expand All @@ -12,7 +12,7 @@ RUN apt-get update && apt-get -y upgrade && apt-get install -y \
libpq5 \
python3.12

FROM base as builder
FROM base AS builder

RUN openssl version
RUN cat /etc/ssl/openssl.cnf
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN rustup default nightly
RUN python3.12 -m venv /opt/venv

# Install pip
ENV PIP_NO_CACHE_DIR yes
ENV PIP_NO_CACHE_DIR=yes
RUN /opt/venv/bin/python3.12 -m pip install --upgrade pip wheel
ENV PATH="/opt/venv/bin:${PATH}"

Expand Down
Loading