
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
dockerfile-generator
Advanced tools
Generating Dockerfile from JSON and generate JSON document from a Dockerfile.
Release notes of previous versions: Release notes.
npm install dockerfile-generator
You can find here the reference doc: References.
const generator = require('dockerfile-generator')
const result = await generator.generateDockerFile(inputJson)
// Result is a generated Dockerfile.
const generateResult = generator.generateDockerFileFromArray(inputArray)
// Result is a generated Dockerfile.
const convertedJSON = generator.convertToJSON(inputDockerFile)
// Result is a generated JSON from Dockerfile.
const genereratedIgnore = await generator.generateIgnoreFile(ignoredElementsArray)
// generatedIgnore is a generated dockerignore file
{
"from": "nginx:latest",
"run": [ "adduser", "--disabled-password", "-gecos", "", "testuser" ],
"volumes": [ "/home/testuser/app" ],
"user": "testuser",
"working_dir": "/home/testuser/app",
"labels": {
"name": "value"
},
"env": {
"env1": "value1",
"env2": "value2"
},
"add": {
"test.run" : "/home/testuser/app/test.run"
},
"copy": {
"test.cmd" : "/home/testuser/app/test.cmd"
},
"entrypoint": "tail",
"cmd": ["-f", "/dev/null"],
"expose": ["80/tcp"],
"args": [ "value1", "value2"],
"stopsignal": "stop",
"shell": [ "/bin/bash", "-c", "echo", "hello" ],
"comment": "This is a comment"
}
FROM nginx:latest
RUN [ "adduser", "--disabled-password", "-gecos", "", "testuser" ]
VOLUME /home/testuser/app
USER testuser
WORKDIR /home/testuser/app
LABEL name=value
ENV env1=value1
ENV env2=value2
ADD test.run /home/testuser/app/test.run
COPY test.cmd /home/testuser/app/test.cmd
ENTRYPOINT [ "tail" ]
CMD [ "-f", "/dev/null" ]
EXPOSE 80/tcp
ARG value1
ARG value2
STOPSIGNAL stop
SHELL [ "/bin/bash", "-c", "echo", "hello"]
# This is a comment
[
{
"from": "nginx:latest"
},
{
"run": [ "adduser", "--disabled-password", "-gecos", "", "testuser" ]
},
{
"volumes": [ "/home/testuser/app" ]
},
{
"user": "testuser"
},
{
"working_dir": "/home/testuser/app"
},
{
"labels": {
"name": "value"
}
},
{
"env": {
"env1": "value1",
"env2": "value2"
}
},
{
"add": {
"test.run" : "/home/testuser/app/test.run"
}
},
{
"copy": {
"test.cmd" : "/home/testuser/app/test.cmd"
}
},
{
"entrypoint": "tail"
},
{
"cmd": ["-f", "/dev/null"]
},
{
"expose": ["80/tcp"]
},
{
"args": [ "value1", "value2"]
},
{
"stopsignal": "stop"
},
{
"shell": [ "/bin/bash", "-c", "echo", "hello" ]
},
]
FROM nginx:latest
RUN [ "adduser", "--disabled-password", "-gecos", "", "testuser" ]
VOLUME /home/testuser/app
USER testuser
WORKDIR /home/testuser/app
LABEL name=value
ENV env1=value1
ENV env2=value2
ADD test.run /home/testuser/app/test.run
COPY test.cmd /home/testuser/app/test.cmd
ENTRYPOINT [ "tail" ]
CMD [ "-f", "/dev/null" ]
EXPOSE 80/tcp
ARG value1
ARG value2
STOPSIGNAL stop
SHELL [ "/bin/bash", "-c", "echo", "hello"]
FROM nginx:latest
RUN [ "adduser", "--disabled-password", "-gecos", "", "testuser" ]
VOLUME /home/testuser/app
USER testuser
WORKDIR /home/testuser/app
LABEL name=value
ENV env1=value1
ENV env2=value2
ADD test.run /home/testuser/app/test.run
COPY test.cmd /home/testuser/app/test.cmd
ENTRYPOINT [ "tail" ]
CMD [ "-f", "/dev/null" ]
EXPOSE 80/tcp
ARG value1
ARG value2
STOPSIGNAL stop
SHELL [ "/bin/bash", "-c", "echo", "hello"]
# This is a comment
{
"from": "nginx:latest",
"run": [ "adduser", "--disabled-password", "-gecos", "", "testuser" ],
"volumes": [ "/home/testuser/app" ],
"user": "testuser",
"working_dir": "/home/testuser/app",
"labels": {
"name": "value"
},
"env": {
"env1": "value1",
"env2": "value2"
},
"add": {
"test.run" : "/home/testuser/app/test.run"
},
"copy": {
"test.cmd" : "/home/testuser/app/test.cmd"
},
"entrypoint": "tail",
"cmd": ["-f", "/dev/null"],
"expose": ["80/tcp"],
"args": [ "value1", "value2"],
"stopsignal": "stop",
"shell": [ "/bin/bash", "-c", "echo", "hello" ],
"comment_1": "This is a comment"
}
['node_modules','.git']
node_modules
.git
Copyright (c) 2015 Tibor Udvari. Released under the MIT license. See LICENSE for details.
FAQs
Dockerfile generator for NodeJS
The npm package dockerfile-generator receives a total of 386 weekly downloads. As such, dockerfile-generator popularity was classified as not popular.
We found that dockerfile-generator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.