Skip to content
Open
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM debian:12.11
FROM debian:12.12

# pipefail ใ‚’ๆŒ‡ๅฎšๅฏ่ƒฝใซใ™ใ‚‹
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# apt-get install ใง prompt ใ‚’่กจ็คบใ•ใ›ใชใ„
ENV DEBIAN_FRONTEND noninteractive

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and scan container image

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 PAGER "less -X"

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and scan container image

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 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build and scan container image

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/

RUN apt-get update \
&& apt-get upgrade -y \
Expand Down