Skip to content

Commit

Permalink
build: Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin De Matos <[email protected]>
  • Loading branch information
Thytu committed Mar 22, 2024
1 parent 15bb63d commit 3f4d544
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM python:3.10.13-slim as python-base

RUN apt-get update && \
apt-get install -y build-essential libpq-dev gcc curl git-all && \
apt-get remove -y && \
apt-get autoremove -y && \
apt-get clean -y

WORKDIR /app/

COPY requirements.txt .

RUN pip install -r requirements.txt

COPY src/ src/

0 comments on commit 3f4d544

Please sign in to comment.