Skip to content

Instantly share code, notes, and snippets.

@ghaffaru
Created November 5, 2022 08:55
Show Gist options
  • Select an option

  • Save ghaffaru/8c38e1fbbcd8f2fb03abf351c45042dd to your computer and use it in GitHub Desktop.

Select an option

Save ghaffaru/8c38e1fbbcd8f2fb03abf351c45042dd to your computer and use it in GitHub Desktop.

Revisions

  1. ghaffaru created this gist Nov 5, 2022.
    8 changes: 8 additions & 0 deletions Dockerfile
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    FROM python:3
    ENV PYTHONUNBUFFERED=1
    RUN mkdir /code
    WORKDIR /code
    COPY requirements.txt /code/
    RUN pip install --upgrade pip setuptools wheel
    RUN pip install -r requirements.txt
    COPY . /code/