Skip to content

Commit 9630da1

Browse files
authored
internal: fix warnings in Dockerfile (#872)
1 parent 555074f commit 9630da1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deployment/docker-build/pyaleph.dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

55
RUN apt-get update && apt-get -y upgrade && apt-get install -y software-properties-common
66
RUN 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

1717
RUN openssl version
1818
RUN cat /etc/ssl/openssl.cnf
@@ -41,7 +41,7 @@ RUN rustup default nightly
4141
RUN python3.12 -m venv /opt/venv
4242

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

0 commit comments

Comments
 (0)