Skip to content

Instantly share code, notes, and snippets.

@gsampallo
Created May 7, 2022 15:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
dockerfile Python
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