Skip to content

Commit

Permalink
emails
Browse files Browse the repository at this point in the history
  • Loading branch information
philipperemy committed Oct 1, 2024
1 parent 5932690 commit a8216a6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
FROM python:3.10.12-bullseye
MAINTAINER Philippe Remy <[email protected]>

ARG DEBIAN_FRONTEND=noninteractive

ENV PYTHONUNBUFFERED 1

COPY . /app/

WORKDIR /app

RUN pip install -e . --upgrade

WORKDIR api
RUN pip install -r requirements.txt

EXPOSE 9999

ENTRYPOINT [ "python3" ]

CMD [ "server.py" ]

0 comments on commit a8216a6

Please sign in to comment.