Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion export/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG ALPINE_VERSION=latest
ARG ALPINE_VERSION=latest@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1
FROM alpine:${ALPINE_VERSION}

# ensure local pypy is preferred over distribution python
ENV PATH /usr/local/bin:$PATH

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 5 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

ENV LANG C.UTF-8

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 7 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV PYTHONIOENCODING=UTF-8
ENV GPG_KEY=44FE09DEE9E9EC21EF903F06CA614AB6BD73BB06

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-24.04-arm)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-latest)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-latest)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-24.04-arm)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-24.04-arm)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 9 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-latest)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GPG_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

# Download the source
ARG PYPY_BASE=3.10
Expand Down Expand Up @@ -42,7 +42,7 @@

# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
# 20.3.4 is the last version that supports Python 2.7
ENV PYTHON_PIP_VERSION 20.3.4

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-2_7, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_10, ubuntu-24.04-arm)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 45 in export/Dockerfile

View workflow job for this annotation

GitHub Actions / Publish (alpine-pypy-3_9, ubuntu-latest)

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ARG PIP_URL=https://bootstrap.pypa.io/get-pip.py
RUN set -ex; \
\
Expand Down
Loading