Created
May 7, 2022 15:06
-
-
Save gsampallo/e662c1bd7c4e832105aad95a41fa19b3 to your computer and use it in GitHub Desktop.
dockerfile Python
This file contains 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:latest | |
LABEL Maintainer="gsampallo" | |
WORKDIR /usr/app/src | |
COPY *.py ./ | |
COPY requirements.txt ./ | |
COPY test.jpg ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
CMD [ "python", "./test.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment