Created
January 3, 2018 12:43
-
-
Save grim-yawn/50b5a364ed996dd44026f975be4bd09a to your computer and use it in GitHub Desktop.
Dockerfile for specific gcc version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Сперва docker build -t <image_name> . | |
# Потом docker run --rm <image_name> | |
FROM python:3.5 | |
RUN apt-get install g++-4.9 | |
CMD ["gcc", "--version"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment