Skip to content

Commit

Permalink
fix check.
Browse files Browse the repository at this point in the history
  • Loading branch information
montaguethomas committed Jun 14, 2024
1 parent c5e4dcc commit 28e781a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3-alpine
ARG TARGETPLATFORM
RUN apk upgrade --no-cache
RUN [[ "linux/arm" == "${TARGETPLATFORM}" ]] && apk add --no-cache libjpeg-turbo-dev zlib-dev
RUN if [[ "linux/arm" == "${TARGETPLATFORM}" ]]; then apk add --no-cache libjpeg-turbo-dev zlib-dev; fi
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r requirements.txt
Expand Down

0 comments on commit 28e781a

Please sign in to comment.