Skip to content

Commit

Permalink
chore: fix deprecation warnings in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
agateau-gg committed Nov 4, 2024
1 parent ac927eb commit d8086fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.10-slim as build
FROM python:3.10-slim AS build

LABEL maintainer="GitGuardian SRE Team <[email protected]>"

ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONFAULTHANDLER 1
ENV PATH /app/.venv/bin:$PATH
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONFAULTHANDLER=1
ENV PATH=/app/.venv/bin:$PATH

WORKDIR /app

Expand Down

0 comments on commit d8086fa

Please sign in to comment.