Created
May 24, 2024 10:02
-
-
Save ares-b/9510fa3145c1c07f1ae5758250069cd2 to your computer and use it in GitHub Desktop.
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:3.12.3-alpine | |
WORKDIR /sample_app | |
COPY . /sample_app | |
RUN pip install -r /sample_app/requirements.txt | |
CMD ["python", "python_file_name.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment