Advertisement
Tainel

Dockerfile

Mar 28th, 2023 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | Software | 0 0
  1. # Use the Ubuntu 22.04 LTS release for the x86-64 platform as the parent image.
  2. FROM --platform=linux/amd64 ubuntu:22.04
  3.  
  4. # Download package information from all sources.
  5. RUN apt-get update
  6.  
  7. # Install G++ as the chosen C++ compiler.
  8. RUN apt-get install g++ -y
  9.  
  10. # Install GNU Make as the chosen build automation tool.
  11. RUN apt-get install make -y
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement