Skip to content

Commit a6b75e2

Browse files
committed
chore: fix deprecation warnings in Dockerfile
1 parent aac64c4 commit a6b75e2

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM python:3.10-slim as build
1+
FROM python:3.10-slim AS build
22

33
LABEL maintainer="GitGuardian SRE Team <support@gitguardian.com>"
44

5-
ENV LC_ALL C.UTF-8
6-
ENV LANG C.UTF-8
7-
ENV PYTHONDONTWRITEBYTECODE 1
8-
ENV PYTHONFAULTHANDLER 1
9-
ENV PATH /app/.venv/bin:$PATH
5+
ENV LC_ALL=C.UTF-8
6+
ENV LANG=C.UTF-8
7+
ENV PYTHONDONTWRITEBYTECODE=1
8+
ENV PYTHONFAULTHANDLER=1
9+
ENV PATH=/app/.venv/bin:$PATH
1010

1111
WORKDIR /app
1212

0 commit comments

Comments
 (0)