halfapi/Dockerfile
Maxime Alves LIRMM@home c0bd6ddc43 [release] 0.6.21
2022-08-08 20:21:05 +02:00

10 lines
251 B
Docker

# syntax=docker/dockerfile:1
FROM docker.io/python:3.10.5-slim-bullseye
COPY . /halfapi
WORKDIR /halfapi
RUN apt-get update > /dev/null && apt-get -y install git > /dev/null
RUN pip install gunicorn uvicorn
RUN pip install .
CMD gunicorn halfapi.app