10 lines
251 B
Docker
10 lines
251 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM docker.io/python:3.8.12-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
|
|
|