Files
wordlinator/Dockerfile
2022-06-03 08:49:09 -05:00

12 lines
190 B
Docker

FROM python:3.10
RUN apt update && apt install libpq-dev
COPY . .
RUN python -m pip install poetry && \
poetry config virtualenvs.create false && \
poetry install
CMD ./serve.sh