Skip to content

Instantly share code, notes, and snippets.

@ares-b
Created May 24, 2024 10:02
Show Gist options
  • Save ares-b/9510fa3145c1c07f1ae5758250069cd2 to your computer and use it in GitHub Desktop.
Save ares-b/9510fa3145c1c07f1ae5758250069cd2 to your computer and use it in GitHub Desktop.
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