Skip to content

Commit f9592dd

Browse files
Firefishyrus-max
authored andcommitted
Linting fixes for LABEL/ENV usage in enviroments Dockerfile
1 parent ed134e2 commit f9592dd

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

environments/centos-8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM rockylinux:8
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is

environments/debian-11/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:11
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is
@@ -47,5 +47,5 @@ RUN curl -fsSLo sccache.tar.gz https://github.com/mozilla/sccache/releases/downl
4747
rm -rf /tmp/* /var/tmp/*
4848

4949
USER builder
50-
ENV PATH /home/builder/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
50+
ENV PATH=/home/builder/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
5151
ENTRYPOINT ["/sbin/matchhostfsowner"]

environments/debian-12/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:12
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is
@@ -44,5 +44,5 @@ RUN curl -fsSLo sccache.tar.gz https://github.com/mozilla/sccache/releases/downl
4444
rm -rf /tmp/* /var/tmp/*
4545

4646
USER builder
47-
ENV PATH /home/builder/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
47+
ENV PATH=/home/builder/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
4848
ENTRYPOINT ["/sbin/matchhostfsowner"]

environments/el-9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM rockylinux:9
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is

environments/ubuntu-22.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:22.04
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is

environments/ubuntu-24.04/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:24.04
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is

environments/utility/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:22.04
22

33
# Used to link container image to the repo:
44
# https://docs.github.com/en/free-pro-team@latest/packages/managing-container-images-with-github-container-registry/connecting-a-repository-to-a-container-image#connecting-a-repository-to-a-container-image-on-the-command-line
5-
LABEL org.opencontainers.image.source https://github.com/fullstaq-ruby/server-edition
5+
LABEL org.opencontainers.image.source=https://github.com/fullstaq-ruby/server-edition
66

77
# If you make a change and you want to force users to re-pull the image
88
# (e.g. when your change adds a feature that our scripts rely on, or is

0 commit comments

Comments
 (0)