Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
philipperemy committed Aug 13, 2024
1 parent 01e992b commit 4588238
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions api/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM python:3.10.12-bullseye
MAINTAINER Philippe Remy <premy.enseirb@gmail.com>

ARG DEBIAN_FRONTEND=noninteractive

ENV PYTHONUNBUFFERED 1

COPY . /app/

WORKDIR /app
RUN pip install -e . --upgrade

WORKDIR api

ENTRYPOINT [ "python3" ]

CMD [ "server.py" ]

0 comments on commit 4588238

Please sign in to comment.