Skip to content

Commit

Permalink
update ENV syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
gardenerik committed Aug 10, 2024
1 parent c988568 commit 57c7b2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM python:3.12-slim-bookworm
WORKDIR /app
RUN useradd --create-home appuser

ENV PYTHONUNBUFFERED 1
ENV PYTHONFAULTHANDLER 1
ENV PYTHONUNBUFFERED=1
ENV PYTHONFAULTHANDLER=1

RUN export DEBIAN_FRONTEND=noninteractive \
&& apt update \
Expand All @@ -21,5 +21,5 @@ RUN tar -xf /tmp/multirun-x86_64-linux-gnu-${MULTIRUN_VERSION}.tar.gz \

RUN chown appuser:appuser /app

ENV POETRY_VIRTUALENVS_CREATE 0
ENV POETRY_VIRTUALENVS_CREATE=0
RUN pip install --upgrade poetry

0 comments on commit 57c7b2f

Please sign in to comment.