Skip to content

Commit

Permalink
feature: Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zekiahmetbayar committed Jan 11, 2024
1 parent 161468a commit 8e9d7aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.10

LABEL maintainer="Zeki Ahmet Bayar <zeki@liman.dev>"

WORKDIR /code

COPY ./requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY ./ /code/

CMD ["python3", "main.py"]

0 comments on commit 8e9d7aa

Please sign in to comment.