fabaccess/Dockerfile
Philipp Fruck 69c7933894
make container setup suck less
migrated to Postgres because of binary availability of postgres python
client. Also implemented development compose file and refactored
production python image
2022-11-01 21:42:53 +01:00

10 lines
172 B
Docker

FROM python:3.11-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY ./fab_access/* /app
ENTRYPOINT [ "python" ]
CMD [ "-u", "main.py" ]