File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM ubuntu:24.04 as base
1+ FROM ubuntu:24.04 AS base
22
3- ENV DEBIAN_FRONTEND noninteractive
3+ ENV DEBIAN_FRONTEND= noninteractive
44
55RUN apt-get update && apt-get -y upgrade && apt-get install -y software-properties-common
66RUN add-apt-repository -y ppa:deadsnakes/ppa
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get -y upgrade && apt-get install -y \
1212 libpq5 \
1313 python3.12
1414
15- FROM base as builder
15+ FROM base AS builder
1616
1717RUN openssl version
1818RUN cat /etc/ssl/openssl.cnf
@@ -41,7 +41,7 @@ RUN rustup default nightly
4141RUN python3.12 -m venv /opt/venv
4242
4343# Install pip
44- ENV PIP_NO_CACHE_DIR yes
44+ ENV PIP_NO_CACHE_DIR= yes
4545RUN /opt/venv/bin/python3.12 -m pip install --upgrade pip wheel
4646ENV PATH="/opt/venv/bin:${PATH}"
4747
You can’t perform that action at this time.
0 commit comments