Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9348471
dockerfile.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
902 B
Subscribers
None
dockerfile.js
View Options
/*
Language: Dockerfile
Requires: bash.js
Author: Alexis Hénaut <alexis@henaut.net>
Description: language definition for Dockerfile files
Website: https://docs.docker.com/engine/reference/builder/
Category: config
*/
/** @type LanguageFn */
function
dockerfile
(
hljs
)
{
const
KEYWORDS
=
[
"from"
,
"maintainer"
,
"expose"
,
"env"
,
"arg"
,
"user"
,
"onbuild"
,
"stopsignal"
];
return
{
name
:
'Dockerfile'
,
aliases
:
[
'docker'
],
case_insensitive
:
true
,
keywords
:
KEYWORDS
,
contains
:
[
hljs
.
HASH_COMMENT_MODE
,
hljs
.
APOS_STRING_MODE
,
hljs
.
QUOTE_STRING_MODE
,
hljs
.
NUMBER_MODE
,
{
beginKeywords
:
'run cmd entrypoint volume add copy workdir label healthcheck shell'
,
starts
:
{
end
:
/[^\\]$/
,
subLanguage
:
'bash'
}
}
],
illegal
:
'</'
};
}
module
.
exports
=
dockerfile
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Jul 4 2025, 6:32 PM (5 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3397215
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment