Skip to content

Commit

Permalink
Add dockerfile for Flask app
Browse files Browse the repository at this point in the history
  • Loading branch information
maxachis committed Dec 20, 2024
1 parent 8cd78a0 commit 0bf26ee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM python:3.12.8

# TODO: Do we need to add environment variables here?

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
RUN pip3 install "psycopg[binary,pool]"

COPY . .

0 comments on commit 0bf26ee

Please sign in to comment.