Created
March 17, 2023 05:46
-
-
Save amberlex78/5ae484ce4d97e3b5c695bb6799614855 to your computer and use it in GitHub Desktop.
py-hello-word-docker
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
print('Hello, World!') |
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
FROM python:3.9-alpine | |
RUN mkdir /app | |
WORKDIR /app | |
COPY . /app | |
CMD ["python", "app.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment