Skip to content

Instantly share code, notes, and snippets.

@amberlex78
Created March 17, 2023 05:46
Show Gist options
  • Save amberlex78/5ae484ce4d97e3b5c695bb6799614855 to your computer and use it in GitHub Desktop.
Save amberlex78/5ae484ce4d97e3b5c695bb6799614855 to your computer and use it in GitHub Desktop.
py-hello-word-docker
print('Hello, World!')
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