- Products
- Learn
- Local User Groups
- Partners
- More
The State of Ransomware Q1 2026
Key Trends and Their Impact
Good, Better, Best:
Prioritizing Defenses Against Credential Abuse
AI Security Masters E7:
How CPR Broke ChatGPT's Isolation and What It Means for You
Blueprint Architecture for Securing
The AI Factory & AI Data Center
Call For Papers
Your Expertise. Our Stage
CheckMates Go:
CheckMates Fest
Hi,
I attached a Dockerfile for you if you like to try it out. The content is very simple and loads a basic Alpine Linux image and installs npm as well as the postman-collection-transformer:
FROM alpine:3.14
RUN apk add --no-cache npm
RUN npm install -g postman-collection-transformer
WORKDIR /app
CMD ["/bin/sh"]
Finally it starts a shell.
If you have installed Docker, cd into the directory with the Dockerfile and you can build the image with the following command:
docker build -t postmanconverter .
This builds your postmanconverter image. You can then run a container from this image with
docker container run --rm -it -v ${PWD}:/app postmanconverter
--rm removes the container after you have finished and the -v argument bind mounts the current folder into the container to /app, so you can put you postman collection json files into the same directory as the Dockerfile.
After running the docker container command you will be put into the container's shell. From her you can simply run the command "postman-collection-transformer".
Cheers,
Thomas
About CheckMates
Learn Check Point
Advanced Learning
YOU DESERVE THE BEST SECURITY